X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=8a37457834b40138ecdace2802f72110ab840217;hb=34db702d004b245e5528b0ba20c6de441f61820a;hp=f71f622608a9edea7ec2d4fd77b677b1b73b329d;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index f71f622608..8a37457834 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -1,7 +1,7 @@ 0) -{ +// 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` +FROM + `{?_MYSQL_PREFIX?}_user_stats` +WHERE + `userid`=%s +ORDER BY + `timestamp_ordered` DESC", + array(getMemberId()), __FILE__, __LINE__); + +if (!SQL_HASZERONUMS($result)) { // Mail orders are in pool so we can display them - $SW = 2; $OUT = ""; - while ($pool = SQL_FETCHROW($result)) - { + $OUT = ''; + while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template $content = array( - 'sw' => $SW, - 'cat' => GET_CATEGORY(bigintval($pool[1])), - 'pay' => GET_PAYMENT(bigintval($pool[2])), - 'subj' => COMPILE_CODE($pool[3]), - 'url' => DEREFERER($pool[4]), - 'stamp' => MAKE_DATETIME($pool[5], "0"), - 'recs' => $pool[6], - 'sent' => MAKE_DATETIME($pool[7], "0"), - 'clix' => $pool[8], - 'perc' => COMPILE_CODE($pool[8] / $pool[6] * 100)."%", + 'cat_id' => $content['cat_id'], + 'payment_id' => $content['payment_id'], + 'url' => $content['url'], + 'timestamp_ordered' => generateDateTime($content['timestamp_ordered'], 2), + 'max_rec' => $content['max_rec'], + 'timestamp_sent' => generateDateTime($content['timestamp_send'], 2), + 'clicks' => $content['clicks'], + 'subject' => $content['subject'], + 'percents' => ($content['clicks'] / $content['max_rec'] * 100), ); // Load row template and switch colors - $OUT .= LOAD_TEMPLATE("member_stats_row", true, $content); - $SW = 3 - $SW; - } - - // Free memory - SQL_FREERESULT($result); - - // Remember rows in template - define('__STATS_ROWS', $OUT); + $OUT .= loadTemplate('member_stats_row', true, $content); + } // END - if // Load main template - LOAD_TEMPLATE("member_stats_table"); -} - else -{ + $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT); +} else { // No mail orders fond - LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_NO_MAILS_IN_POOL); + $main_content['stats'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_STATS--}'); } -// +// Free result +SQL_FREERESULT($result); + +// Load main template +loadTemplate('member_stats_pool', false, $main_content); + +// [EOF] ?>