X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=46afe0b1ef409f01b730eb8ba3ba827a42c4886c;hb=b4784eb7267921f162d2fa90d21fa20fad700962;hp=ef5959e75020cb81ea7d71f36e450abe4f1eaf46;hpb=c2e17d983fcbc0c3bd1dd37908d87c678f0367df;p=mailer.git diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index ef5959e750..46afe0b1ef 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -1,7 +1,7 @@ 0) { +if (!SQL_HASZERONUMS($result)) { // Load all orders - $OUT = ''; $SW = 2; - while ($data = SQL_FETCHARRAY($result)) { - // Is the ZIP code set? If not, set dashes - if (empty($data['zip'])) $data['zip'] = '---'; - + $OUT = ''; + while ($content = SQL_FETCHARRAY($result)) { // Prepare content for output - $content = array( - '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'] - ); + $content['timestamp'] = generateDateTime($content['timestamp'], '2'); // Load template - $OUT .= loadTemplate('member_pool_row', true, $content); - - // Switch color - $SW = 3 - $SW; + $OUT .= loadTemplate('member_pool_row', TRUE, $content); } // END - if // Load main template - $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT); + $main_content['pool'] = loadTemplate('member_pool_table', TRUE, $OUT); } else { // No mails in pool! - $main_content['pool'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_POOL')); + $main_content['pool'] = displayMessage('{--MEMBER_NO_MAILS_IN_POOL--}', TRUE); } // Free result SQL_FREERESULT($result); // Load sent orders -$result = SQL_QUERY_ESC("SELECT - `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks` +$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__); + `timestamp_ordered` DESC', + array(getMemberId()), __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // Mail orders are in pool so we can display them - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template - // @TODO Rewrite in template: clix->clicks - $content = array( - '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)."%", - ); + $content['timestamp_ordered'] = generateDateTime($content['timestamp_ordered'], '2'); + $content['timestamp_sent'] = generateDateTime($content['timestamp_send'], '2'); + + // Click rate + $content['click_rate'] = '0'; + + // Better protection against 'divison-by-zero' + if ($content['max_rec'] > 0) { + $content['click_rate'] = ($content['clicks'] / $content['max_rec'] * 100); + } // END - if // Load row template and switch colors - $OUT .= loadTemplate('member_stats_row', true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate('member_stats_row', TRUE, $content); + } // END - while // Load main template - $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT); + $main_content['stats'] = loadTemplate('member_stats_table', TRUE, $OUT); } else { // No mail orders fond - $main_content['stats'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_STATS')); + $main_content['stats'] = displayMessage('{--MEMBER_NO_MAILS_IN_STATS--}', TRUE); } // Free result SQL_FREERESULT($result); // Load main template -loadTemplate('member_stats_pool', false, $main_content); +loadTemplate('member_stats_pool', FALSE, $main_content); // [EOF] ?>