X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=b72df1819658c270f48d0a751f3618219261103e;hb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;hp=739b83a55b0f262415df34f32587e20933921bc6;hpb=5071030af40e69ca4284642f44758964e18f5be8;p=mailer.git diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index 739b83a55b..b72df18196 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -1,7 +1,7 @@ 0) { @@ -67,78 +70,82 @@ if (SQL_NUMROWS($result) > 0) { // Prepare content for output $content = array( - 'sw' => $SW, - 'id' => $data['id'], - 'cat' => getCategory($data['cat_id']), - 'pay' => getPaymentTitlePrice($data['payment_id']), - 'subj' => COMPILE_CODE($data['subject']), - 'url' => DEREFERER($data['url']), - 'stamp' => generateDateTime($data['timestamp'], '2'), - 'recs' => $data['target_send'], - 'type' => translatePoolType($data['data_type']), - 'zip' => $data['zip'] + 'sw' => $SW, + 'id' => $data['id'], + 'cat' => getCategory($data['cat_id']), + 'pay' => getPaymentTitlePrice($data['payment_id']), + 'subject' => $data['subject'], + 'url' => generateDerefererUrl($data['url']), + 'timestamp' => generateDateTime($data['timestamp'], 2), + 'target_send' => $data['target_send'], + 'type' => translatePoolType($data['data_type']), + 'zip' => $data['zip'] ); // Load template - $OUT .= LOAD_TEMPLATE("member_pool_row", true, $content); + $OUT .= loadTemplate('member_pool_row', true, $content); // Switch color $SW = 3 - $SW; } // END - if // Load main template - $main_content['pool'] = LOAD_TEMPLATE("member_pool_table", true, $OUT); + $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT); } else { // No mails in pool! - $main_content['pool'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_POOL')); + $main_content['pool'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_POOL')); } // Free result SQL_FREERESULT($result); // Load sent orders -// 0 1 2 3 4 5 6 7 8 -$result = SQL_QUERY_ESC("SELECT id, cat_id, payment_id, subject, url, timestamp_ordered, max_rec, timestamp_send, clicks -FROM `{!_MYSQL_PREFIX!}_user_stats` -WHERE userid=%s -ORDER BY timestamp_ordered DESC", -array(getUserId()), __FILE__, __LINE__); +$result = SQL_QUERY_ESC("SELECT + `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks` +FROM + `{?_MYSQL_PREFIX?}_user_stats` +WHERE + `userid`=%s +ORDER BY + `timestamp_ordered` DESC", + array(getMemberId()), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Mail orders are in pool so we can display them $OUT = ''; $SW = 2; - while ($data = SQL_FETCHROW($result)) { + while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template + // @TODO Rewrite in template: clix->clicks $content = array( - 'sw' => $SW, - 'cat' => getCategory($data[1]), - 'pay' => getPaymentTitlePrice($data[2]), - 'subj' => COMPILE_CODE($data[3]), - 'url' => DEREFERER($data[4]), - 'stamp' => generateDateTime($data[5], '2'), - 'recs' => $data[6], - 'sent' => generateDateTime($data[7], '2'), - 'clix' => $data[8], - 'perc' => COMPILE_CODE($data[8] / $data[6] * 100)."%", + 'sw' => $SW, + 'cat' => getCategory($content['cat_id']), + 'pay' => getPaymentTitlePrice($content['payment_id']), + 'url' => generateDerefererUrl($content['url']), + 'timestamp_ordered' => generateDateTime($content['timestamp_ordered'], 2), + 'target_send' => $content['max_rec'], + 'sent' => generateDateTime($content['timestamp_send'], 2), + 'clix' => $content['clicks'], + 'subject' => $content['subject'], + 'percents' => translateComma($content['clicks'] / $content['max_rec'] * 100)."%", ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("member_stats_row", true, $content); + $OUT .= loadTemplate('member_stats_row', true, $content); $SW = 3 - $SW; } // Load main template - $main_content['stats'] = LOAD_TEMPLATE("member_stats_table", true, $OUT); + $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT); } else { // No mail orders fond - $main_content['stats'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_STATS')); + $main_content['stats'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_STATS')); } // Free result SQL_FREERESULT($result); // Load main template -LOAD_TEMPLATE("member_stats_pool", false, $main_content); +loadTemplate('member_stats_pool', false, $main_content); -// +// [EOF] ?>