/** * WP eCommerce Admin AJAX functions * * These are the WPSC Admin AJAX functions * * @package wp-e-commerce * @since 3.7 * * @uses update_option() Updates option in the database given key and value * @uses wp_delete_term() Removes term from the database * @uses fetch_rss() DEPRECATED * @uses wpsc_member_dedeactivate_subscriptions() @todo docs * @uses wpsc_member_deactivate_subscriptions() @todo docs * @uses wpsc_update_purchase_log_status() Updates the status of the logs for a purchase * @uses transaction_results() Main function for creating purchase reports * @uses wpsc_find_purchlog_status_name() Finds name of given status */ function wpsc_admin_ajax() { if (!wpsc_is_store_admin()) { return; } global $wpdb; if (isset($_POST['action']) && $_POST['action'] == 'product-page-order') { $current_order = get_option('wpsc_product_page_order'); $new_order = $_POST['order']; if (isset($new_order["advanced"])) { $current_order["advanced"] = array_unique(explode(',', $new_order["advanced"])); } if (isset($new_order["side"])) { $current_order["side"] = array_unique(explode(',', $new_order["side"])); } update_option('wpsc_product_page_order', $current_order); exit(print_r($order, 1)); } if (isset($_POST['save_image_upload_state']) && $_POST['save_image_upload_state'] == 'true' && is_numeric($_POST['image_upload_state'])) { $upload_state = (int) (bool) $_POST['image_upload_state']; update_option('wpsc_use_flash_uploader', $upload_state); exit("done"); } if (isset($_POST['remove_variation_value']) && $_POST['remove_variation_value'] == "true" && is_numeric($_POST['variation_value_id'])) { $value_id = absint($_GET['variation_value_id']); echo wp_delete_term($value_id, 'wpsc-variation'); exit; } if (isset($_REQUEST['log_state']) && $_REQUEST['log_state'] == "true" && is_numeric($_POST['id']) && is_numeric($_POST['value'])) { $newvalue = $_POST['value']; if ($_REQUEST['suspend'] == 'true') { if ($_REQUEST['value'] == 1 && function_exists('wpsc_member_dedeactivate_subscriptions')) { wpsc_member_dedeactivate_subscriptions($_POST['id']); } elseif (function_exists('wpsc_member_deactivate_subscriptions')) { wpsc_member_deactivate_subscriptions($_POST['id']); } exit; } else { $log_data = $wpdb->get_row($wpdb->prepare("SELECT * FROM `" . WPSC_TABLE_PURCHASE_LOGS . "` WHERE `id` = '%d' LIMIT 1", $_POST['id']), ARRAY_A); if ($newvalue == 2 && function_exists('wpsc_member_activate_subscriptions')) { wpsc_member_activate_subscriptions($_POST['id']); } wpsc_update_purchase_log_status($_POST['id'], $newvalue); if ($newvalue > $log_data['processed'] && $log_data['processed'] < 2) { transaction_results($log_data['sessionid'], false); } $status_name = wpsc_find_purchlog_status_name($purchase['processed']); echo "document.getElementById(\"form_group_" . absint($_POST['id']) . "_text\").innerHTML = '" . $status_name . "';\n"; $year = date("Y"); $month = date("m"); $start_timestamp = mktime(0, 0, 0, $month, 1, $year); $end_timestamp = mktime(0, 0, 0, $month + 1, 0, $year); echo "document.getElementById(\"log_total_month\").innerHTML = '" . addslashes(wpsc_currency_display(admin_display_total_price($start_timestamp, $end_timestamp))) . "';\n"; echo "document.getElementById(\"log_total_absolute\").innerHTML = '" . addslashes(wpsc_currency_display(admin_display_total_price())) . "';\n"; exit; } } }
function wpsc_user_purchases() { global $wpdb, $user_ID, $wpsc_purchlog_statuses, $gateway_checkout_form_fields, $purchase_log, $col_count, $nzshpcrt_gateways; $i = 0; $subtotal = 0; do_action('wpsc_pre_purchase_logs'); foreach ((array) $purchase_log as $purchase) { $status_state = "expand"; $status_style = "display:none;"; $alternate = ""; $i++; if ($i % 2 != 0) { $alternate = "alt"; } echo "<tr class='{$alternate}'>\n\r"; echo " <td class='status processed'>"; echo "<a href=\"#\" onclick=\"return show_details_box('status_box_" . $purchase['id'] . "','log_expander_icon_" . $purchase['id'] . "');\">"; if (!empty($_GET['id']) && $_GET['id'] == $purchase['id']) { $status_state = "collapse"; $status_style = "style='display: block;'"; } echo "<img class=\"log_expander_icon\" id=\"log_expander_icon_" . $purchase['id'] . "\" src=\"" . WPSC_CORE_IMAGES_URL . "/icon_window_{$status_state}.gif\" alt=\"\" title=\"\" />"; echo "<span id='form_group_" . $purchase['id'] . "_text'>" . __('Details', 'wpsc') . "</span>"; echo "</a>"; echo " </td>\n\r"; echo " <td class='date'>"; echo date("jS M Y", $purchase['date']); echo " </td>\n\r"; echo " <td class='price'>"; $country = get_option('country_form_field'); if ($purchase['shipping_country'] != '') { $billing_country = $purchase['billing_country']; $shipping_country = $purchase['shipping_country']; } elseif (!empty($country)) { $country_sql = $wpdb->prepare("SELECT * FROM `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "` WHERE `log_id` = %d AND `form_id` = %d LIMIT 1", $purchase['id'], get_option('country_form_field')); $country_data = $wpdb->get_results($country_sql, ARRAY_A); $billing_country = $country_data[0]['value']; $shipping_country = $country_data[0]['value']; } echo wpsc_currency_display($purchase['totalprice'], array('display_as_html' => false)); $subtotal += $purchase['totalprice']; echo " </td>\n\r"; if (get_option('payment_method') == 2) { echo " <td class='payment_method'>"; $gateway_name = ''; foreach ((array) $nzshpcrt_gateways as $gateway) { if ($purchase['gateway'] != 'testmode') { if ($gateway['internalname'] == $purchase['gateway']) { $gateway_name = $gateway['name']; } } else { $gateway_name = __("Manual Payment", 'wpsc'); } } echo $gateway_name; echo " </td>\n\r"; } echo "</tr>\n\r"; echo "<tr>\n\r"; echo " <td colspan='{$col_count}' class='details'>\n\r"; echo " <div id='status_box_" . $purchase['id'] . "' class='order_status' style=\"{$status_style}\">\n\r"; echo " <div>\n\r"; //order status code lies here //check what $purchase['processed'] reflects in the $wpsc_purchlog_statuses array $status_name = wpsc_find_purchlog_status_name($purchase['processed']); echo " <strong class='form_group'>" . __('Order Status', 'wpsc') . ":</strong>\n\r"; echo $status_name . "<br /><br />"; do_action('wpsc_user_log_after_order_status', $purchase); //written by allen $usps_id = get_option('usps_user_id'); if ($usps_id != null) { $XML1 = "<TrackFieldRequest USERID=\"{$usps_id}\"><TrackID ID=\"" . $purchase['track_id'] . "\"></TrackID></TrackFieldRequest>"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://secure.shippingapis.com/ShippingAPITest.dll?"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HEADER, 0); $postdata = "API=TrackV2&XML=" . $XML1; curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata); $parser = new xml2array(); $parsed = $parser->parse($result); $parsed = $parsed[0]['children'][0]['children']; if ($purchase['track_id'] != null) { echo "<br /><br />"; echo " <strong class='form_group'>" . __('Shipping Address', 'wpsc') . "</strong>\n\r"; echo "<table>"; foreach ((array) $parsed as $parse) { if ($parse['name'] == "TRACKSUMMARY") { foreach ((array) $parse['children'] as $attrs) { if ($attrs['name'] != "EVENT") { $attrs['name'] = str_replace("EVENT", "", $attrs['name']); } $bar = ucfirst(strtolower($attrs['name'])); echo "<tr><td>" . $bar . "</td><td>" . $attrs['tagData'] . "</td></tr>"; } } } echo "</table>"; } echo "<br /><br />"; } //end of written by allen //cart contents display starts here; echo " <strong class='form_group'>" . __('Order Details', 'wpsc') . ":</strong>\n\r"; $cartsql = $wpdb->prepare("SELECT * FROM `" . WPSC_TABLE_CART_CONTENTS . "` WHERE `purchaseid`= %d", $purchase['id']); $cart_log = $wpdb->get_results($cartsql, ARRAY_A); $j = 0; // /* if ($cart_log != null) { echo "<table class='logdisplay'>"; echo "<tr class='toprow2'>"; echo " <th class='details_name'>"; _e('Name', 'wpsc'); echo " </th>"; echo " <th class='details_quantity'>"; _e('Quantity', 'wpsc'); echo " </th>"; echo " <th class='details_price'>"; _e('Price', 'wpsc'); echo " </th>"; echo " <th class='details_tax'>"; _e('GST', 'wpsc'); echo " </th>"; echo " <th class='details_shipping'>"; _e('Shipping', 'wpsc'); echo " </th>"; echo " <th class='details_total'>"; _e('Total', 'wpsc'); echo " </th>"; echo "</tr>"; $gsttotal = false; $endtotal = $total_shipping = 0; foreach ((array) $cart_log as $cart_row) { $alternate = ""; $j++; if ($j % 2 != 0) { $alternate = "alt"; } $variation_list = ''; $billing_country = !empty($country_data[0]['value']) ? $country_data[0]['value'] : ''; $shipping_country = !empty($country_data[0]['value']) ? $country_data[0]['value'] : ''; $shipping = $cart_row['pnp']; $total_shipping += $shipping; echo "<tr class='{$alternate}'>"; echo " <td class='details_name'>"; echo apply_filters('the_title', $cart_row['name']); echo $variation_list; echo " </td>"; echo " <td class='details_quantity'>"; echo $cart_row['quantity']; echo " </td>"; echo " <td class='details_price'>"; $price = $cart_row['price'] * $cart_row['quantity']; echo wpsc_currency_display($price); echo " </td>"; echo " <td class='details_tax'>"; $gst = $cart_row['tax_charged']; if ($gst > 0) { $gsttotal += $gst; } echo wpsc_currency_display($gst, array('display_as_html' => false)); echo " </td>"; echo " <td class='details_shipping'>"; echo wpsc_currency_display($shipping, array('display_as_html' => false)); echo " </td>"; echo " <td class='details_total'>"; $endtotal += $price; echo wpsc_currency_display($shipping + $price, array('display_as_html' => false)); echo " </td>"; echo '</tr>'; } echo "<tr>"; echo " <td>"; echo " </td>"; echo " <td>"; echo " </td>"; echo " <td>"; echo " <td>"; echo " </td>"; echo " </td>"; echo " <td class='details_totals_labels'>"; echo "<strong>" . __('Total Shipping', 'wpsc') . ":</strong><br />"; echo "<strong>" . __('Total Tax', 'wpsc') . ":</strong><br />"; echo "<strong>" . __('Final Total', 'wpsc') . ":</strong>"; echo " </td>"; echo " <td class='details_totals_labels'>"; $total_shipping += $purchase['base_shipping']; $endtotal += $total_shipping; $endtotal += $purchase['wpec_taxes_total']; echo wpsc_currency_display($total_shipping, array('display_as_html' => false)) . "<br />"; if ($gsttotal) { //if false then must be exclusive.. doesnt seem too reliable needs more testing echo wpsc_currency_display($gsttotal, array('display_as_html' => false)) . "<br />"; } else { echo wpsc_currency_display($purchase['wpec_taxes_total'], array('display_as_html' => false)) . "<br />"; } echo wpsc_currency_display($endtotal, array('display_as_html' => false)); echo " </td>"; echo '</tr>'; echo "</table>"; echo "<br />"; echo "<strong>" . __('Customer Details', 'wpsc') . ":</strong>"; echo "<table class='customer_details'>"; $usersql = $wpdb->prepare("SELECT `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "`.value, `" . WPSC_TABLE_CHECKOUT_FORMS . "`.* FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` LEFT JOIN `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "` ON `" . WPSC_TABLE_CHECKOUT_FORMS . "`.id = `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "`.`form_id` WHERE `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "`.log_id = %d OR `" . WPSC_TABLE_CHECKOUT_FORMS . "`.type = 'heading' ORDER BY `" . WPSC_TABLE_CHECKOUT_FORMS . "`.`checkout_set`, `" . WPSC_TABLE_CHECKOUT_FORMS . "`.`checkout_order`", $purchase['id']); $formfields = $wpdb->get_results($usersql, ARRAY_A); if (!empty($formfields)) { foreach ((array) $formfields as $form_field) { // If its a heading display the Name otherwise continue on if ('heading' == $form_field['type']) { echo " <tr><td colspan='2'>" . esc_html($form_field['name']) . ":</td></tr>"; continue; } switch ($form_field['unique_name']) { case 'shippingcountry': case 'billingcountry': $country = maybe_unserialize($form_field['value']); if (is_array($country)) { $country = $country[0]; } else { $country = $form_field['value']; } echo " <tr><td>" . esc_html($form_field['name']) . ":</td><td>" . esc_html($country) . "</td></tr>"; break; case 'billingstate': case 'shippingstate': if (is_numeric($form_field['value'])) { $state = wpsc_get_state_by_id($form_field['value'], 'name'); } else { $state = $form_field['value']; } echo " <tr><td>" . esc_html($form_field['name']) . ":</td><td>" . esc_html($state) . "</td></tr>"; break; default: echo " <tr><td>" . esc_html($form_field['name']) . ":</td><td>" . esc_html($form_field['value']) . "</td></tr>"; } } } $payment_gateway_names = ''; $payment_gateway_names = get_option('payment_gateway_names'); foreach ((array) $payment_gateway_names as $gatewayname) { //if the gateway has a custom name if (!empty($gatewayname)) { $display_name = $payment_gateway_names[$purchase_log[0]['gateway']]; } else { //if not fall back on default name foreach ((array) $nzshpcrt_gateways as $gateway) { if ($gateway['internalname'] == $purchase['gateway']) { $display_name = $gateway['name']; } } } } echo " <tr><td>" . __('Payment Method', 'wpsc') . ":</td><td>" . $display_name . "</td></tr>"; echo " <tr><td>" . __('Purchase #', 'wpsc') . ":</td><td>" . $purchase['id'] . "</td></tr>"; if ($purchase['transactid'] != '') { echo " <tr><td>" . __('Transaction Id', 'wpsc') . ":</td><td>" . $purchase['transactid'] . "</td></tr>"; } echo "</table>"; } echo " </div>\n\r"; echo " </div>\n\r"; echo " </td>\n\r"; echo "</tr>\n\r"; } }
function wpsc_purchase_log_csv() { global $wpdb, $wpsc_gateways; get_currentuserinfo(); $count = 0; if ('key' == $_REQUEST['rss_key'] && current_user_can('manage_options')) { if (isset($_REQUEST['start_timestamp']) && isset($_REQUEST['end_timestamp'])) { $start_timestamp = $_REQUEST['start_timestamp']; $end_timestamp = $_REQUEST['end_timestamp']; $start_end_sql = "SELECT * FROM `" . WPSC_TABLE_PURCHASE_LOGS . "` WHERE `date` BETWEEN '%d' AND '%d' ORDER BY `date` DESC"; $start_end_sql = apply_filters('wpsc_purchase_log_start_end_csv', $start_end_sql); $data = $wpdb->get_results($wpdb->prepare($start_end_sql, $start_timestamp, $end_timestamp), ARRAY_A); /* translators: %1$s is "start" date, %2$s is "to" date */ $csv_name = _x('Purchase Log %1$s to %2$s.csv', 'exported purchase log csv file name', 'wpsc'); $csv_name = sprintf($csv_name, date("M-d-Y", $start_timestamp), date("M-d-Y", $end_timestamp)); } elseif (isset($_REQUEST['m'])) { $year = (int) substr($_REQUEST['m'], 0, 4); $month = (int) substr($_REQUEST['m'], -2); $month_year_sql = "\n\t\t\t\tSELECT *\n\t\t\t\tFROM " . WPSC_TABLE_PURCHASE_LOGS . "\n\t\t\t\tWHERE YEAR(FROM_UNIXTIME(date)) = %d AND MONTH(FROM_UNIXTIME(date)) = %d\n\t\t\t\tORDER BY `id` DESC\n\t\t\t"; $month_year_sql = apply_filters('wpsc_purchase_log_month_year_csv', $month_year_sql); $data = $wpdb->get_results($wpdb->prepare($month_year_sql, $year, $month), ARRAY_A); /* translators: %1$s is month, %2$s is year */ $csv_name = _x('Purchase Log %1$s/%2$s.csv', 'exported purchase log csv file name', 'wpsc'); $csv_name = sprintf($csv_name, $month, $year); } else { $sql = apply_filters('wpsc_purchase_log_month_year_csv', "SELECT * FROM " . WPSC_TABLE_PURCHASE_LOGS . " ORDER BY `id` DESC"); $data = $wpdb->get_results($sql, ARRAY_A); $csv_name = _x("All Purchase Logs.csv", 'exported purchase log csv file name', 'wpsc'); } $form_sql = "SELECT * FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` WHERE `active` = '1' AND `type` != 'heading' ORDER BY `checkout_order` DESC;"; $form_data = $wpdb->get_results($form_sql, ARRAY_A); $headers_array = array(_x('Purchase ID', 'purchase log csv headers', 'wpsc'), _x('Purchase Total', 'purchase log csv headers', 'wpsc')); $headers2_array = array(_x('Payment Gateway', 'purchase log csv headers', 'wpsc'), _x('Payment Status', 'purchase log csv headers', 'wpsc'), _x('Purchase Date', 'purchase log csv headers', 'wpsc')); $form_headers_array = array(); $output = ''; foreach ((array) $form_data as $form_field) { if (empty($form_field['unique_name'])) { $form_headers_array[] = $form_field['name']; } else { $prefix = false === strstr($form_field['unique_name'], 'billing') ? _x('Shipping ', 'purchase log csv header field prefix', 'wpsc') : _x('Billing ', 'purchase log csv header field prefix', 'wpsc'); $form_headers_array[] = $prefix . $form_field['name']; } } foreach ((array) $data as $purchase) { $form_headers = ''; $output .= "\"" . $purchase['id'] . "\","; //Purchase ID $output .= "\"" . $purchase['totalprice'] . "\","; //Purchase Total foreach ((array) $form_data as $form_field) { $collected_data_sql = "SELECT * FROM `" . WPSC_TABLE_SUBMITTED_FORM_DATA . "` WHERE `log_id` = '" . $purchase['id'] . "' AND `form_id` = '" . $form_field['id'] . "' LIMIT 1"; $collected_data = $wpdb->get_results($collected_data_sql, ARRAY_A); $collected_data = $collected_data[0]; if (('billingstate' == $form_field['unique_name'] || 'shippingstate' == $form_field['unique_name']) && is_numeric($collected_data['value'])) { $output .= "\"" . wpsc_get_state_by_id($collected_data['value'], 'code') . "\","; } else { $output .= "\"" . str_replace(array("\r", "\r\n", "\n"), ' ', $collected_data['value']) . "\","; } // get form fields } if (isset($wpsc_gateways[$purchase['gateway']]) && isset($wpsc_gateways[$purchase['gateway']]['display_name'])) { $output .= "\"" . $wpsc_gateways[$purchase['gateway']]['display_name'] . "\","; } else { $output .= "\"\","; } $status_name = wpsc_find_purchlog_status_name($purchase['processed']); $output .= "\"" . $status_name . "\","; //get purchase status $output .= "\"" . date("jS M Y", $purchase['date']) . "\","; //date $cartsql = "SELECT `prodid`, `quantity`, `name` FROM `" . WPSC_TABLE_CART_CONTENTS . "` WHERE `purchaseid`=" . $purchase['id'] . ""; $cart = $wpdb->get_results($cartsql, ARRAY_A); if ($count < count($cart)) { $count = count($cart); } $items = count($cart); $i = 1; // Go through all products in cart and display quantity and sku foreach ((array) $cart as $item) { $skuvalue = get_product_meta($item['prodid'], 'sku', true); if (empty($skuvalue)) { $skuvalue = __('N/A', 'wpsc'); } $output .= "\"" . $item['quantity'] . "\","; $output .= "\"" . str_replace('"', '\\"', $item['name']) . "\","; if ($items <= 1) { $output .= "\"" . $skuvalue . "\""; } elseif ($items > 1 && $i != $items) { $output .= "\"" . $skuvalue . "\","; } else { $output .= "\"" . $skuvalue . "\""; } $i++; } $output .= "\n"; // terminates the row/line in the CSV file } // Get the most number of products and create a header for them $headers3 = array(); for ($i = 0; $i < $count; $i++) { $headers3[] = _x('Quantity', 'purchase log csv headers', 'wpsc'); $headers3[] = _x('Product Name', 'purchase log csv headers', 'wpsc'); $headers3[] = _x('SKU', 'purchase log csv headers', 'wpsc'); } $headers = '"' . implode('","', $headers_array) . '",'; $form_headers = '"' . implode('","', $form_headers_array) . '",'; $headers2 = '"' . implode('","', $headers2_array) . '",'; $headers3 = '"' . implode('","', $headers3) . '"'; $headers = apply_filters('wpsc_purchase_log_csv_headers', $headers . $form_headers . $headers2 . $headers3, $data, $form_data); $output = apply_filters('wpsc_purchase_log_csv_output', $output, $data, $form_data); do_action('wpsc_purchase_log_csv'); header('Content-Type: text/csv'); header('Content-Disposition: inline; filename="' . $csv_name . '"'); echo $headers . "\n" . $output; exit; } }
function wpsc_admin_ajax() { global $wpdb; if (isset($_POST['action']) && $_POST['action'] == 'product-page-order') { $current_order = get_option('wpsc_product_page_order'); $new_order = $_POST['order']; if (isset($new_order["advanced"])) { $current_order["advanced"] = array_unique(explode(',', $new_order["advanced"])); } if (isset($new_order["side"])) { $current_order["side"] = array_unique(explode(',', $new_order["side"])); } update_option('wpsc_product_page_order', $current_order); exit(print_r($order, 1)); } if (isset($_POST['save_image_upload_state']) && $_POST['save_image_upload_state'] == 'true' && is_numeric($_POST['image_upload_state'])) { $upload_state = (int) (bool) $_POST['image_upload_state']; update_option('wpsc_use_flash_uploader', $upload_state); exit("done"); } if (isset($_POST['remove_variation_value']) && $_POST['remove_variation_value'] == "true" && is_numeric($_POST['variation_value_id'])) { $value_id = absint($_GET['variation_value_id']); echo wp_delete_term($value_id, 'wpsc-variation'); exit; } if (isset($_POST['hide_ecom_dashboard']) && $_POST['hide_ecom_dashboard'] == 'true') { require_once ABSPATH . WPINC . '/rss.php'; $rss = fetch_rss('http://www.instinct.co.nz/feed/'); $rss->items = array_slice($rss->items, 0, 5); $rss_hash = sha1(serialize($rss->items)); update_option('wpsc_ecom_news_hash', $rss_hash); exit(1); } if (isset($_POST['remove_meta']) && $_POST['remove_meta'] == 'true' && is_numeric($_POST['meta_id'])) { $meta_id = (int) $_POST['meta_id']; if (delete_meta($meta_id)) { echo $meta_id; exit; } echo 0; exit; } if (isset($_REQUEST['log_state']) && $_REQUEST['log_state'] == "true" && is_numeric($_POST['id']) && is_numeric($_POST['value'])) { $newvalue = $_POST['value']; if ($_REQUEST['suspend'] == 'true') { if ($_REQUEST['value'] == 1 && function_exists('wpsc_member_dedeactivate_subscriptions')) { wpsc_member_dedeactivate_subscriptions($_POST['id']); } elseif (function_exists('wpsc_member_deactivate_subscriptions')) { wpsc_member_deactivate_subscriptions($_POST['id']); } exit; } else { $log_data = $wpdb->get_row($wpdb->prepare("SELECT * FROM `" . WPSC_TABLE_PURCHASE_LOGS . "` WHERE `id` = '%d' LIMIT 1", $_POST['id']), ARRAY_A); if ($newvalue == 2 && function_exists('wpsc_member_activate_subscriptions')) { wpsc_member_activate_subscriptions($_POST['id']); } $wpdb->update(WPSC_TABLE_PURCHASE_LOGS, array('processed' => $newvalue), array('id' => $_POST['id']), '%d', '%d'); if ($newvalue > $log_data['processed'] && $log_data['processed'] < 2) { transaction_results($log_data['sessionid'], false); } $status_name = wpsc_find_purchlog_status_name($purchase['processed']); echo "document.getElementById(\"form_group_" . $_POST['id'] . "_text\").innerHTML = '" . $status_name . "';\n"; $year = date("Y"); $month = date("m"); $start_timestamp = mktime(0, 0, 0, $month, 1, $year); $end_timestamp = mktime(0, 0, 0, $month + 1, 0, $year); echo "document.getElementById(\"log_total_month\").innerHTML = '" . addslashes(wpsc_currency_display(admin_display_total_price($start_timestamp, $end_timestamp))) . "';\n"; echo "document.getElementById(\"log_total_absolute\").innerHTML = '" . addslashes(wpsc_currency_display(admin_display_total_price())) . "';\n"; exit; } } }