0) { // Load all orders $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Is the ZIP code set? If not, set dashes if (empty($content['zip'])) $content['zip'] = '---'; // Prepare content for output // @TODO More usage of EL at this array $content = array( 'id' => $content['id'], 'cat' => getCategory($content['cat_id']), 'pay' => getPaymentTitlePrice($content['payment_id']), 'subject' => $content['subject'], 'url' => generateDerefererUrl($content['url']), 'timestamp' => generateDateTime($content['timestamp'], 2), 'target_send' => $content['target_send'], 'type' => translatePoolType($content['data_type']), 'zip' => $content['zip'] ); // Load template $OUT .= loadTemplate('member_pool_row', true, $content); } // END - if // Load main template $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT); } else { // No mails in pool! $main_content['pool'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_POOL--}'); } // 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_NUMROWS($result) > 0) { // Mail orders are in pool so we can display them $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template $content = array( '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 .= loadTemplate('member_stats_row', true, $content); } // END - if // Load main template $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT); } else { // No mail orders fond $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] ?>