]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/guest/what-rallyes.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / guest / what-rallyes.php
index f8f89db0949edd927c66635322bbeb352820c7b8..aa1842c7fc45733bd8aa1f57cc7ccd3d90a3d8af 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 06/29/2004 *\r
- * ================                             Last change: 08/22/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-rallyes.php                                 *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Ref rallyes                                      *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Ref-Rallyes                                      *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
- elseif ((!EXT_IS_ACTIVE("rallye")) && (!IS_ADMIN()))\r
-{\r
-       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "rallye");\r
-       return;\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR("guest", basename(__FILE__));\r
-\r
-OUTPUT_HTML ("<DIV align=\"center\">");\r
-\r
-// Check for possible running rallyes\r
-$ADMIN = " AND d.is_active='Y'";\r
-if (IS_ADMIN()) $ADMIN = "";\r
-\r
-$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\r
-FROM "._MYSQL_PREFIX."_rallye_data AS d, "._MYSQL_PREFIX."_admins AS a\r
-WHERE d.admin_id=a.id".$ADMIN." AND d.notified='Y'\r
-ORDER BY d.end_time LIMIT 1", __FILE__, __LINE__);\r
-\r
-if (SQL_NUMROWS($result) == 1)\r
-{\r
-       // Found some (normally one...\r
-       list($id, $aid, $login, $title, $descr, $templ, $start, $end, $min_users, $min_prices) = SQL_FETCHROW($result);\r
-\r
-       $expired = false;\r
-       if ($end < time())\r
-       {\r
-               // Rallye is expired\r
-               define('__RALLYE_EXTRAS', RALLYE_HAS_EXPIRED);\r
-               $expired = true;\r
-       }\r
-        elseif (time() >= ($end - ONE_DAY))\r
-       {\r
-               // Rallye will expire in less one day!\r
-               define('__RALLYE_EXTRAS', RALLYE_EXPIRE_ONE_DAY);\r
-       }\r
-        else\r
-       {\r
-               define('__RALLYE_EXTRAS', "<A href=\"".URL."/modules.php?module=index&amp;what=register\">".RALLYE_REGISTER_NOW."</A>");\r
-       }\r
-       // Set admin line (currently set to impressum, later to contact form)\r
-       define('__RALLYE_ADMIN', "<A href=\"".URL."/modules.php?module=index&amp;what=impressum&amp;admin=".$aid."\">".$login."</A>");\r
-\r
-       // Set title\r
-       define('__RALLYE_TITLE', COMPILE_CODE($title));\r
-\r
-       // Handle description...\r
-       if ((empty($descr)) && (!empty($templ)))\r
-       {\r
-               // Use description from template\r
-               define('__RALLYE_DESCR', LOAD_TEMPLATE("rallye_".$templ, true));\r
-       }\r
-        else\r
-       {\r
-               // Use description from database\r
-               define('__RALLYE_DESCR', COMPILE_CODE($descr));\r
-       }\r
-\r
-       // Set start and end time\r
-       define('__RALLYE_START', MAKE_DATETIME($start, "1"));\r
-       define('__RALLYE_END'  , MAKE_DATETIME($end  , "1"));\r
-\r
-       if ($min_users == 0)\r
-       {\r
-               // Rallye ends without user limitation\r
-               define('__RALLYE_MAX_USERS', RALLYE_END_NO_USER_LIMITATION);\r
-       }\r
-        else\r
-       {\r
-               // Rallye ends when X members are totally in your exchange\r
-               define('__RALLYE_MAX_USERS', RALLYE_END_USERS_1." ".$min_users." ".RALLYE_END_USERS_2);\r
-       }\r
-       if ($min_prices == 0)\r
-       {\r
-               // Rallye ends without user limitation\r
-               define('__RALLYE_MIN_PRICES', RALLYE_END_NO_PRICE_LIMITATION);\r
-       }\r
-        else\r
-       {\r
-               // Rallye ends when X members are totally in your exchange\r
-               define('__RALLYE_MIN_PRICES', RALLYE_END_PRICES_1." ".$min_prices." ".RALLYE_END_PRICES_2);\r
-       }\r
-\r
-       if ($expired)\r
-       {\r
-               define('__RALLYE_PRICES', RALLYE_LIST_WINNERS($id));\r
-               define('__RALLYE_TOP_USERS', "<DIV align=\"center\" class=\"big\">".__RALLYE_EXTRAS."</DIV>");\r
-               define('__RALLYE_CAN_WIN_THIS', RALLYE_OUR_WINNERS_ARE);\r
-       }\r
-        else\r
-       {\r
-               define('__RALLYE_PRICES', RALLYE_ADD_PRICES($id, "html"));\r
-               define('__RALLYE_TOP_USERS', RALLYE_ADD_TOPUSERS($id, $GLOBALS['userid']));\r
-               define('__RALLYE_CAN_WIN_THIS', RALLYE_YOU_CAN_WIN);\r
-       }\r
-\r
-       // And load final template\r
-       LOAD_TEMPLATE("guest_rallye_show");\r
-}\r
- else\r
-{\r
-       // No rallye found so far\r
-       LOAD_TEMPLATE("guest_no_rallyes");\r
-}\r
-//\r
-OUTPUT_HTML ("</DIV>");\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 06/29/2004 *
+ * ================                             Last change: 08/22/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-rallyes.php                                 *
+ * -------------------------------------------------------------------- *
+ * Short description : Ref rallyes                                      *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Ref-Rallyes                                      *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.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 *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+ elseif ((!EXT_IS_ACTIVE("rallye")) && (!IS_ADMIN()))
+{
+       ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "rallye");
+       return;
+}
+
+// Add description as navigation point
+ADD_DESCR("guest", basename(__FILE__));
+
+OUTPUT_HTML ("<DIV align=\"center\">");
+
+// Check for possible running rallyes
+$ADMIN = " AND d.is_active='Y'";
+if (IS_ADMIN()) $ADMIN = "";
+
+$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__);
+
+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);
+
+       $expired = false;
+       if ($end < time())
+       {
+               // Rallye is expired
+               define('__RALLYE_EXTRAS', RALLYE_HAS_EXPIRED);
+               $expired = true;
+       }
+        elseif (time() >= ($end - ONE_DAY))
+       {
+               // 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>");
+       }
+       // 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));
+
+       // Handle description...
+       if ((empty($descr)) && (!empty($templ)))
+       {
+               // Use description from template
+               define('__RALLYE_DESCR', LOAD_TEMPLATE("rallye_".$templ, true));
+       }
+        else
+       {
+               // Use description from database
+               define('__RALLYE_DESCR', COMPILE_CODE($descr));
+       }
+
+       // Set start and end time
+       define('__RALLYE_START', MAKE_DATETIME($start, "1"));
+       define('__RALLYE_END'  , MAKE_DATETIME($end  , "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);
+       }
+
+       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);
+       }
+
+       // And load final template
+       LOAD_TEMPLATE("guest_rallye_show");
+}
+ else
+{
+       // No rallye found so far
+       LOAD_TEMPLATE("guest_no_rallyes");
+}
+//
+OUTPUT_HTML ("</DIV>");
+//
+?>