]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-rallyes.php
Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / member / what-rallyes.php
index a7a6fdb315ff4a72917d53eaab4374cdae60a964..52b19648003f718e96c9fe65dec1e28a7a7a600b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/29/2004 *
- * ================                             Last change: 08/22/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 06/29/2004 *
+ * ===================                          Last change: 08/22/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-rallyes.php                                 *
@@ -17,7 +17,8 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-} elseif (!IS_MEMBER()) {
-       redirectToUrl('modules.php?module=index');
-} elseif ((!EXT_IS_ACTIVE('rallye')) && (!IS_ADMIN())) {
-       addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('rallye'));
-       return;
+       die();
+} elseif (!isMember()) {
+       redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-ADD_DESCR('member', __FILE__);
+addMenuDescription('member', __FILE__);
 
-OUTPUT_HTML("<div align=\"center\">");
+if ((!isExtensionActive('rallye')) && (!isAdmin())) {
+       loadTemplate('admin_settings_saved', false, 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 +77,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'] = getMessage('RALLYE_HAS_EXPIRED');
                $expired = true;
-       } elseif (time() >= ($content['end_time'] - getConfig('one_day'))) {
+       } elseif (time() >= ($content['end_time'] - getConfig('ONE_DAY'))) {
                // Rallye will expire in less one day!
-               define('__RALLYE_EXTRAS', getMessage('RALLYE_EXPIRE_ONE_DAY'));
+               $content['extras'] = getMessage('RALLYE_EXPIRE_ONE_DAY');
        } else {
-               define('__RALLYE_EXTRAS', "<a href=\"{?URL?}/modules.php?module=login&amp;what=reflinks\">{--RALLYE_GET_REFLINK--}</a>");
+               // Link to referal links page
+               $content['extras'] = '<a href="{%url=modules.php?module=login&amp;what=reflinks%}">{--RALLYE_GET_REFLINK--}</a>';
        }
 
        // Set admin line (currently set to impressum, later to contact form)
-       define('__RALLYE_ADMIN', "<a href=\"{?URL?}/modules.php?module=index&amp;what=impressum&amp;admin=".$content['admin_id']."\">".$content['login']."</a>");
-
-       // Set title
-       define('__RALLYE_TITLE', COMPILE_CODE($content['title']));
+       // @TODO Reactivate this: $content['admin'] = '<a href="{%url=modules.php?module=index&amp;what=impressum&amp;admin=' . $content['admin_id'] . '%}">' . $content['login'] . '</a>';
 
        // 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']  = determineReferalRallyeMinimumUsers($content['min_users']);
+       $content['min_prices'] = determineReferalRallyeMinimumPrices($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', "<div align=\"center\" class=\"big\">{!__RALLYE_EXTRAS!}</div>");
-               define('__RALLYE_CAN_WIN_THIS', getMessage('RALLYE_OUR_WINNERS_ARE'));
+               $content['prices']       = addReferalRallyeWinners($content['id']);
+               $content['top_users']    = '<div align="center" class="big">' . $content['extras'] . '</div>';
+               $content['can_win_this'] = getMessage('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']       = addReferalRallyePrices($content['id'], 'html');
+               $content['top_users']    = addReferalRallyeTopUsers($content['id'], getMemberId());
+               $content['can_win_this'] = getMessage('RALLYE_YOU_CAN_WIN');
        }
 
        // And load final template
-       LOAD_TEMPLATE('guest_rallye_show');
+       loadTemplate('guest_rallye_show', false, $content);
 } else {
        // No rallye found so far
-       LOAD_TEMPLATE('guest_no_rallyes');
+       loadTemplate('guest_no_rallyes');
 }
 
 // Free result
 SQL_FREERESULT($result);
 
-//
-OUTPUT_HTML('</div>');
-
 // [EOF]
 ?>