X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_doubler.php;h=9cb700c4d89963bd331c517c73e2a0812455f09e;hb=754861aaacc51a871b8b91f382c3e0b57726f692;hp=6ba8c6ddc84d817b3718950d240d640a005f6048;hpb=66b91ce490ab549425619c95fc12086e126d541b;p=mailer.git diff --git a/inc/modules/admin/what-list_doubler.php b/inc/modules/admin/what-list_doubler.php index 6ba8c6ddc8..9cb700c4d8 100644 --- a/inc/modules/admin/what-list_doubler.php +++ b/inc/modules/admin/what-list_doubler.php @@ -1,7 +1,7 @@ 0) { // Something was payed out - $SUM_ALREADY += $cnt; - define('__DOUBLER_ALREADY_DIRECT_LINK', "".$cnt.""); - } - - $result = SQL_QUERY("SELECT COUNT(id) FROM `{!_MYSQL_PREFIX!}_doubler` WHERE completed='Y' AND is_ref='Y'", __FILE__, __LINE__); - list($cnt) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - if ((empty($cnt)) || ($cnt == '0')) { - // Nothing payed out so far - define('__DOUBLER_ALREADY_REF_LINK', '0'); - } else { - // Something was payed out - $SUM_ALREADY += $cnt; - define('__DOUBLER_ALREADY_REF_LINK', "".$cnt.""); - } - define('__DOUBLER_ALREADY_ALL_LINK', "".$SUM_ALREADY.""); - - // And the same for waiting pouts (direct and referal) - $result = SQL_QUERY("SELECT COUNT(id) FROM `{!_MYSQL_PREFIX!}_doubler` WHERE completed='N' AND is_ref='N'", __FILE__, __LINE__); - list($cnt) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - if ((empty($cnt)) || ($cnt == '0')) { - // Nothing payed out so far - define('__DOUBLER_WAITING_DIRECT_LINK', '0'); - } else { - // Something was payed out - $SUM_WAITING += $cnt; - define('__DOUBLER_WAITING_DIRECT_LINK', "".$cnt.""); - } - - $result = SQL_QUERY("SELECT COUNT(id) FROM `{!_MYSQL_PREFIX!}_doubler` WHERE completed='N' AND is_ref='Y'", __FILE__, __LINE__); - list($cnt) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - - if ((empty($cnt)) || ($cnt == '0')) { - // Nothing payed out so far - define('__DOUBLER_WAITING_REF_LINK', '0'); - } else { - // Something was payed out - $SUM_WAITING += $cnt; - define('__DOUBLER_WAITING_REF_LINK', "".$cnt.""); - } - define('__DOUBLER_WAITING_ALL_LINK', "".$SUM_WAITING.""); - - // All data is loaded here... - break; -} + $sumAlready += $count; + $content['already_direct_link'] = '' . $count . ''; + } // END - if + + $count = countSumTotalData('Y', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='Y'"); + + if ($count > 0) { + // Something was payed out + $sumAlready += $count; + $content['already_ref_link'] = '' . $count . ''; + } // END - if + + // And the same for waiting pouts (direct and referral) + $count = countSumTotalData('N', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='N'"); + + if ($count > 0) { + // Something was payed out + $sumWaiting += $count; + $content['waiting_direct_link'] = '' . $count . ''; + } // END - if + + $count = countSumTotalData('N', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='Y'"); + + if ($count > 0) { + // Something was payed out + $sumWaiting += $count; + $content['waiting_ref_link'] = '' . $count . ''; + } // END - if + + // Links for all + $content['already_all_link'] = '' . $sumAlready . ''; + $content['waiting_all_link'] = '' . $sumWaiting . ''; + + // All data is loaded here... + break; +} // END - switch // Load mode template -LOAD_TEMPLATE('admin_list_doubler_' . REQUEST_GET('mode')); +loadTemplate('admin_list_doubler_' . getRequestElement('do'), FALSE, $content); -// +// [EOF] ?>