X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-doubler.php;h=8457a98c8cefdf5926569f6fdb3c32ba15753c63;hp=01b6209015992840020203805253e8553cf1bd26;hb=04b69ac9f33369cbf654396c4a42cb1fff710ff4;hpb=d22fa6e71e81743b277da0873e2abe7fc7bb5d98 diff --git a/inc/modules/guest/what-doubler.php b/inc/modules/guest/what-doubler.php index 01b6209015..8457a98c8c 100644 --- a/inc/modules/guest/what-doubler.php +++ b/inc/modules/guest/what-doubler.php @@ -50,31 +50,12 @@ if ((!isExtensionActive('doubler')) && (!isAdmin())) { return; } // END - if -// Percent values etc. -$content['charge'] = translateComma(getConfig('doubler_charge') * 100); -$content['ref'] = translateComma(getConfig('doubler_ref') * 100); -$content['total'] = translateComma(getConfig('doubler_points')); -$content['min'] = translateComma(getConfig('doubler_min')); -$content['max'] = translateComma(getConfig('doubler_max')); - -// Transfer referal id -$content['refid'] = determineReferalId(); - // Which mail-send-mode did the admin setup? $content['payout_time'] = getMessage('DOUBLER_PAYOUT_TIME_' . getConfig('doubler_send_mode')); // Generate table with already payed out doubles $content['payout_history'] = generateDoublerTable(0, 'Y', 'N', 'DESC'); -// Generate table with next-to-run payouts -$content['next_table'] = generateDoublerTable(); - -// Generate timemark -$content['timeout_mark'] = createFancyTime(getConfig('doubler_timeout')); - -// Points left to double -$content['left'] = translateComma(DOUBLER_GET_TOTAL_POINTS_LEFT()); - // Load template loadTemplate('guest_doubler', false, $content);