X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-rallyes.php;h=0265f94e6f910505dcf99c74b8284c470f1f5f2e;hb=16e8327d8b9ac2f02cf49c6179e7148fc32b1066;hp=0ba1b7e4c57b54300099dbc5c9c1ff44d68ec6a0;hpb=916bba4f00ee924f0d88b8fc273dee5bfb798aed;p=mailer.git diff --git a/inc/modules/member/what-rallyes.php b/inc/modules/member/what-rallyes.php index 0ba1b7e4c5..0265f94e6f 100644 --- a/inc/modules/member/what-rallyes.php +++ b/inc/modules/member/what-rallyes.php @@ -1,7 +1,7 @@ = $content['min_users']) && (getTotalRallyeWinners($content['id']) >= $content['min_prices'])) { // Rallye is expired - $content['extras'] = getMessage('RALLYE_HAS_EXPIRED'); - $expired = true; - } elseif (time() >= ($content['end_time'] - getConfig('ONE_DAY'))) { + $content['extras'] = '{--RALLYE_HAS_EXPIRED--}'; + $expired = TRUE; + } elseif (time() >= ($content['end_time'] - getOneDay())) { // Rallye will expire in less one day! - $content['extras'] = getMessage('RALLYE_EXPIRE_ONE_DAY'); + $content['extras'] = '{--RALLYE_EXPIRE_ONE_DAY--}'; } else { - // Link to referal links page - $content['extras'] = "{--RALLYE_GET_REFLINK--}"; + // Link to referral links page + $content['extras'] = '{--RALLYE_GET_REFERRAL_LINK--}'; } // Set admin line (currently set to impressum, later to contact form) - // @TODO Reactivate this: $content['admin'] = "".$content['login'].""; + // @TODO Reactivate this: $content['admin'] = '' . $content['login'] . ''; // Handle description... if ((empty($content['descr'])) && (!empty($content['template']))) { // Use description from template - $content['descr'] = loadTemplate('rallye_' . $content['template'], true); + $content['descr'] = loadTemplate('rallye_' . $content['template'], TRUE); } // END - if // Determine min_users/prices - $content['min_users'] = determineReferalRallyeMinimumUsers($content['min_users']); - $content['min_prices'] = determineReferalRallyeMinimumPrices($content['min_prices']); + $content['min_users'] = determineReferralRallyeMinimumUsers($content['min_users']); + $content['min_prices'] = determineReferralRallyeMinimumPrices($content['min_prices']); // Set start and end time - $content['start'] = generateDateTime($content['start_time'], 1); - $content['end'] = generateDateTime($content['end_time'] , 1); + $content['start_time'] = generateDateTime($content['start_time'], 1); + $content['end_time'] = generateDateTime($content['end_time'] , 1); - if ($expired === true) { - $content['prices'] = addReferalRallyeWinners($content['id']); - $content['top_users'] = "
".$content['extras']."
"; - $content['can_win_this'] = getMessage('RALLYE_OUR_WINNERS_ARE'); + if ($expired === TRUE) { + $content['prices'] = addReferralRallyeWinners('member', $content['id']); + $content['top_users'] = '
' . $content['extras'] . '
'; + $content['can_win_this'] = '{--RALLYE_OUR_WINNERS_ARE--}'; } else { - $content['prices'] = addReferalRallyePrices($content['id'], 'html'); - $content['top_users'] = addReferalRallyeTopUsers($content['id'], getMemberId()); - $content['can_win_this'] = getMessage('RALLYE_YOU_CAN_WIN'); + $content['prices'] = addReferralRallyePrices($content['id'], 'html'); + $content['top_users'] = addReferralRallyeTopUsers('member', $content['id'], getMemberId()); + $content['can_win_this'] = '{--RALLYE_YOU_CAN_WIN--}'; } // And load final template - loadTemplate('guest_rallye_show', false, $content); + loadTemplate('member_show_rallye', FALSE, $content); } else { // No rallye found so far - loadTemplate('guest_no_rallyes'); + loadTemplate('member_rallye_404'); } // Free result