X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-rallyes.php;h=3daa41edce39aca87faaf670128c0617ac6224b9;hb=f42e417c1cd63d07563965c54bf10f6e1cd4248f;hp=6185904b432c1f65d79d805083c21c48a80e0bbf;hpb=60494e212a67fe360bfbb481eb4928480a6f379b;p=mailer.git diff --git a/inc/modules/member/what-rallyes.php b/inc/modules/member/what-rallyes.php index 6185904b43..3daa41edce 100644 --- a/inc/modules/member/what-rallyes.php +++ b/inc/modules/member/what-rallyes.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Ref-Rallyes * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,121 +37,90 @@ ************************************************************************/ // 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 (!IS_LOGGED_IN()) -{ - LOAD_URL("modules.php?module=index"); -} - elseif ((!EXT_IS_ACTIVE("rallye")) && (!IS_ADMIN())) -{ - ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "rallye"); - return; +if (!defined('__SECURITY')) { + die(); +} elseif (!isMember()) { + redirectToIndexMemberOnlyModule(); } // Add description as navigation point -ADD_DESCR("member", basename(__FILE__)); +addMenuDescription('member', __FILE__); -OUTPUT_HTML("
"); +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 = ""; -$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 (isAdmin()) $ADMIN = ''; +$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'".$ADMIN." +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); - SQL_FREERESULT($result); + $content = SQL_FETCHARRAY($result); $expired = false; - if ($end < time()) - { + if ($content['end_time'] < time()) { // Rallye is expired - define('__RALLYE_EXTRAS', RALLYE_HAS_EXPIRED); + $content['extras'] = getMessage('RALLYE_HAS_EXPIRED'); $expired = true; - } - elseif (time() >= ($end - ONE_DAY)) - { + } elseif (time() >= ($content['end_time'] - getConfig('ONE_DAY'))) { // Rallye will expire in less one day! - define('__RALLYE_EXTRAS', RALLYE_EXPIRE_ONE_DAY); - } - else - { - define('__RALLYE_EXTRAS', "".RALLYE_GET_REFLINK.""); + $content['extras'] = getMessage('RALLYE_EXPIRE_ONE_DAY'); + } else { + // Link to referal links page + $content['extras'] = "{--RALLYE_GET_REFLINK--}"; } - // Set admin line (currently set to impressum, later to contact form) - define('__RALLYE_ADMIN', "".$login.""); - // Set title - define('__RALLYE_TITLE', COMPILE_CODE($title)); + // Set admin line (currently set to impressum, later to contact form) + // @TODO Reactivate this: $content['admin'] = "".$content['login'].""; // 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 - 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/prices + $content['min_users'] = determineReferalRallyeMinimumUsers($content['min_users']); + $content['min_prices'] = determineReferalRallyeMinimumPrices($content['min_prices']); // Set start and end time - define('__RALLYE_START', MAKE_DATETIME($start, "1")); - define('__RALLYE_END' , MAKE_DATETIME($end , "1")); + $content['start'] = generateDateTime($content['start_time'], '1'); + $content['end'] = generateDateTime($content['end_time'] , '1'); - if ($expired) - { - define('__RALLYE_PRICES', RALLYE_LIST_WINNERS($id)); - define('__RALLYE_TOP_USERS', "
".__RALLYE_EXTRAS."
"); - 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); + if ($expired === true) { + $content['prices'] = addReferalRallyeWinners($content['id']); + $content['top_users'] = "
".$content['extras']."
"; + $content['can_win_this'] = getMessage('RALLYE_OUR_WINNERS_ARE'); + } else { + $content['prices'] = addReferalRallyePrices($content['id'], 'html'); + $content['top_users'] = addReferalRallyeTopUsers($content['id'], getUserId()); + $content['can_win_this'] = getMessage('RALLYE_YOU_CAN_WIN'); } // And load final template - LOAD_TEMPLATE("guest_rallye_show"); -} - else -{ + loadTemplate('guest_rallye_show', false, $content); +} else { // No rallye found so far - LOAD_TEMPLATE("guest_no_rallyes"); + loadTemplate('guest_no_rallyes'); } -// -OUTPUT_HTML("
"); -// + +// Free result +SQL_FREERESULT($result); + +// [EOF] ?>