X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-rallyes.php;h=4ecc3cca97e98a874dfa3f44dfa226028c1c034e;hb=f6014bce7255a915872f2f463247440c0d58f9a9;hp=c4cfe8bb6b7766e3f5b6c84e4d2c883c800749a8;hpb=650f9bb32a2e60a78501b498ba7c4930405e5b6b;p=mailer.git diff --git a/inc/modules/member/what-rallyes.php b/inc/modules/member/what-rallyes.php index c4cfe8bb6b..4ecc3cca97 100644 --- a/inc/modules/member/what-rallyes.php +++ b/inc/modules/member/what-rallyes.php @@ -1,7 +1,7 @@ "); +if ((!isExtensionActive('rallye')) && (!isAdmin())) { + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=rallye%}'); + return; +} // END - if // Check for possible running rallyes -$ADMIN = " AND d.is_active='Y'"; -if (IS_ADMIN()) $ADMIN = ''; +$ADD = " AND d.is_active='Y'"; +if (isAdmin()) $ADD = ''; + $result = SQL_QUERY("SELECT d.id, d.admin_id, a.login, d.title, d.descr, d.template, d.start_time, d.end_time, d.min_users, d.min_prices FROM - `{!_MYSQL_PREFIX!}_rallye_data` AS d + `{?_MYSQL_PREFIX?}_rallye_data` AS d INNER JOIN - `{!_MYSQL_PREFIX!}_admins` AS a + `{?_MYSQL_PREFIX?}_admins` AS a ON d.admin_id=a.id WHERE - d.notified='Y'".$ADMIN." + d.notified='Y'" . $ADD . " ORDER BY d.end_time ASC LIMIT 1", __FILE__, __LINE__); @@ -76,60 +75,52 @@ if (SQL_NUMROWS($result) == 1) { $expired = false; if ($content['end_time'] < time()) { // Rallye is expired - define('__RALLYE_EXTRAS', getMessage('RALLYE_HAS_EXPIRED')); + $content['extras'] = '{--RALLYE_HAS_EXPIRED--}'; $expired = true; - } elseif (time() >= ($content['end_time'] - getConfig('one_day'))) { + } elseif (time() >= ($content['end_time'] - getOneDay())) { // Rallye will expire in less one day! - define('__RALLYE_EXTRAS', getMessage('RALLYE_EXPIRE_ONE_DAY')); + $content['extras'] = '{--RALLYE_EXPIRE_ONE_DAY--}'; } else { - define('__RALLYE_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) - define('__RALLYE_ADMIN', "".$content['login'].""); - - // Set title - define('__RALLYE_TITLE', COMPILE_CODE($content['title'])); + // @TODO Reactivate this: $content['admin'] = '' . $content['login'] . ''; // Handle description... if ((empty($content['descr'])) && (!empty($content['template']))) { // Use description from template - define('__RALLYE_DESCR', LOAD_TEMPLATE('rallye_' . $content['template'], true)); - } else { - // Use description from database - define('__RALLYE_DESCR', COMPILE_CODE($content['descr'])); - } + $content['descr'] = loadTemplate('rallye_' . $content['template'], true); + } // END - if // Determine min_users/prices - define('__RALLYE_MAX_USERS' , RALLYE_DETERMINE_MIN_USERS($content['min_users'])); - define('__RALLYE_MAX_PRICES', RALLYE_DETERMINE_MIN_PRICES($content['min_prices'])); + $content['min_users'] = determineReferralRallyeMinimumUsers($content['min_users']); + $content['min_prices'] = determineReferralRallyeMinimumPrices($content['min_prices']); // Set start and end time - define('__RALLYE_START', generateDateTime($content['start_time'], '1')); - define('__RALLYE_END' , generateDateTime($content['end_time'] , '1')); + $content['start'] = generateDateTime($content['start_time'], 1); + $content['end'] = generateDateTime($content['end_time'] , 1); if ($expired === true) { - define('__RALLYE_PRICES', RALLYE_LIST_WINNERS($content['id'])); - define('__RALLYE_TOP_USERS', "
{!__RALLYE_EXTRAS!}
"); - define('__RALLYE_CAN_WIN_THIS', getMessage('RALLYE_OUR_WINNERS_ARE')); + $content['prices'] = addReferralRallyeWinners('member', $content['id']); + $content['top_users'] = '
' . $content['extras'] . '
'; + $content['can_win_this'] = '{--RALLYE_OUR_WINNERS_ARE--}'; } else { - define('__RALLYE_PRICES', RALLYE_ADD_PRICES($content['id'], 'html')); - define('__RALLYE_TOP_USERS', RALLYE_ADD_TOPUSERS($content['id'], getUserId())); - define('__RALLYE_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 - LOAD_TEMPLATE('guest_rallye_show'); + loadTemplate('member_show_rallye', false, $content); } else { // No rallye found so far - LOAD_TEMPLATE('guest_no_rallyes'); + loadTemplate('member_rallye_404'); } // Free result SQL_FREERESULT($result); -// -OUTPUT_HTML(''); - -// +// [EOF] ?>