]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-rallyes.php
Filters for configurable userid exclusion added:
[mailer.git] / inc / modules / guest / what-rallyes.php
index 680f16125d7ae9846b8d7756e8c8ce1e62d42deb..43afabe64ddebad8cc450c4595834e51f45a3a64 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                                 *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Ref-Rallyes                                      *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} elseif (!EXT_IS_ACTIVE("rallye")) {
-       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "rallye");
-       return;
-}
+       exit();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("guest", __FILE__);
+addYouAreHereLink('guest', __FILE__);
+
+if ((!isExtensionActive('rallye')) && (!isAdmin())) {
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=rallye%}');
+       return;
+} // END - if
 
-OUTPUT_HTML("<DIV align=\"center\">");
+// Open div tag
+outputHtml('<div align="center">');
 
 // 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 DISTINCT 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."_admins AS a
-WHERE d.admin_id=a.id".$ADMIN." AND d.notified='Y'
-ORDER BY d.end_time LIMIT 1", __FILE__, __LINE__);
+$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`
+INNER JOIN
+       `{?_MYSQL_PREFIX?}_admins` AS `a`
+ON
+       `d`.`admin_id`=`a`.`id`
+WHERE
+       `d`.`notified`='Y'
+       " . $ADD . "
+ORDER BY
+       `d`.`end_time` ASC
+LIMIT 1", __FILE__, __LINE__);
 
-if (SQL_NUMROWS($result) == 1)
-{
+if (SQL_NUMROWS($result) == 1) {
        // Found some (normally one...
-       list($id, $aid, $login, $title, $descr, $templ, $start, $end, $min_users, $min_prices) = SQL_FETCHROW($result);
+       $content = SQL_FETCHARRAY($result);
 
-       $expired = false;
-       if ($end < time())
-       {
+       $expired = FALSE;
+       if (($content['end_time'] < time()) && (getTotalConfirmedUser() >= $content['min_users']) && (getTotalRallyeWinners($content['id']) >= $content['min_prices'])) {
                // Rallye is expired
-               define('__RALLYE_EXTRAS', RALLYE_HAS_EXPIRED);
-               $expired = true;
-       }
-        elseif (time() >= ($end - $_CONFIG['one_day']))
-       {
+               $content['extras'] = '{--RALLYE_HAS_EXPIRED--}';
+               $expired = TRUE;
+       } elseif (time() >= ($content['end_time'] - getOneDay())) {
                // Rallye will expire in less one day!
-               define('__RALLYE_EXTRAS', RALLYE_EXPIRE_ONE_DAY);
-       }
-        else
-       {
-               define('__RALLYE_EXTRAS', "<A href=\"".URL."/modules.php?module=index&amp;what=register\">".RALLYE_REGISTER_NOW."</A>");
+               $content['extras'] = '{--RALLYE_EXPIRE_ONE_DAY--}';
+       } else {
+               $content['extras'] = '<a href="{%url=modules.php?module=index&amp;what=register%}">{--RALLYE_REGISTER_NOW--}</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=".$aid."\">".$login."</A>");
 
-       // Set title
-       define('__RALLYE_TITLE', COMPILE_CODE($title));
+       // Set admin line (currently set to impressum, later to contact form)
+       // @TODO Reactivate this: $content['admin'] = '<a href="{%url=modules.php?module=index&amp;what=impressum&amp;id=' . $content['admin_id'] . '%}">' . $content['login'] . '</a>';
 
        // Handle description...
-       if ((empty($descr)) && (!empty($templ)))
-       {
+       if ((empty($content['descr'])) && (!empty($content['template']))) {
                // Use description from template
-               define('__RALLYE_DESCR', LOAD_TEMPLATE("rallye_".$templ, true));
-       }
-        else
-       {
-               // Use description from database
-               define('__RALLYE_DESCR', COMPILE_CODE($descr));
-       }
+               $content['descr'] = loadTemplate('rallye_' . $content['template'], TRUE);
+       } // END - if
 
        // Set start and end time
-       define('__RALLYE_START', MAKE_DATETIME($start, "1"));
-       define('__RALLYE_END'  , MAKE_DATETIME($end  , "1"));
+       $content['start_time'] = generateDateTime($content['start_time'], 1);
+       $content['end_time']   = generateDateTime($content['end_time']  , 1);
 
-       if ($min_users == 0)
-       {
-               // Rallye ends without user limitation
-               define('__RALLYE_MAX_USERS', RALLYE_END_NO_USER_LIMITATION);
-       }
-        else
-       {
-               // Rallye ends when X members are totally in your exchange
-               define('__RALLYE_MAX_USERS', RALLYE_END_USERS_1." ".$min_users." ".RALLYE_END_USERS_2);
-       }
-       if ($min_prices == 0)
-       {
-               // Rallye ends without user limitation
-               define('__RALLYE_MIN_PRICES', RALLYE_END_NO_PRICE_LIMITATION);
-       }
-        else
-       {
-               // Rallye ends when X members are totally in your exchange
-               define('__RALLYE_MIN_PRICES', RALLYE_END_PRICES_1." ".$min_prices." ".RALLYE_END_PRICES_2);
-       }
+       // Determine min_users
+       $content['min_users'] = determineReferralRallyeMinimumUsers($content['min_users']);
 
-       if ($expired)
-       {
-               define('__RALLYE_PRICES', RALLYE_LIST_WINNERS($id));
-               define('__RALLYE_TOP_USERS', "<DIV align=\"center\" class=\"big\">".__RALLYE_EXTRAS."</DIV>");
-               define('__RALLYE_CAN_WIN_THIS', RALLYE_OUR_WINNERS_ARE);
-       }
-        else
-       {
-               define('__RALLYE_PRICES', RALLYE_ADD_PRICES($id, "html"));
-               define('__RALLYE_TOP_USERS', RALLYE_ADD_TOPUSERS($id, $GLOBALS['userid']));
-               define('__RALLYE_CAN_WIN_THIS', RALLYE_YOU_CAN_WIN);
+       // Determine min prices (now in function)
+       $content['min_prices'] = determineReferralRallyeMinimumPrices($content['min_prices']);
+
+       if ($expired === TRUE) {
+               $content['prices']       = addReferralRallyeWinners('guest', $content['id']);
+               $content['top_users']    = '<div align="center" class="big">' . $content['extras'] . '</div>';
+               $content['can_win_this'] = '{--RALLYE_OUR_WINNERS_ARE--}';
+       } else {
+               $content['prices']       = addReferralRallyePrices($content['id'], 'html');
+               $content['top_users']    = addReferralRallyeTopUsers('guest', $content['id'], getMemberId());
+               $content['can_win_this'] = '{--RALLYE_YOU_CAN_WIN--}';
        }
 
        // And load final template
-       LOAD_TEMPLATE("guest_rallye_show");
-}
- else
-{
+       loadTemplate('guest_show_rallye', FALSE, $content);
+} else {
        // No rallye found so far
-       LOAD_TEMPLATE("guest_no_rallyes");
+       loadTemplate('guest_rallye_404');
 }
-//
-OUTPUT_HTML("</DIV>");
-//
+
+// Close the div tag
+outputHtml('</div>');
+
+// [EOF]
 ?>