X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=0ffdfb9a074ded4aa4ccc7796d0850aec9f7e608;hb=9e604ce404fe7d2d8dafc259a5fb8cd826aec5e6;hp=ce090689082ce1dbb09c60f06348104488f046e1;hpb=508228c85fba8448d00865b1639cb8cd7a69e457;p=mailer.git diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index ce09068908..0ffdfb9a07 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Mitglieder in Bettel-Rallye auflisten * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,27 +38,27 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); -if (getConfig('beg_rallye') == "Y") { +if (getConfig('beg_rallye') == 'Y') { // Shall I withdraw now? if (REQUEST_ISSET_POST(('withdraw'))) { // Okay, let's prepare... - $curr = date("m", time()) - 1; - if (strlen($curr) == 1) $curr = "0".$curr; - UPDATE_CONFIG("last_month", $curr); - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_WITHDRAW_PREPARED')); + $curr = date('m', time()) - 1; + if (strlen($curr) == 1) $curr = '0'.$curr; + updateConfiguration('last_month', $curr); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_WITHDRAW_PREPARED')); } // END - if // Autopurge installed? - $lastOnline = "%s"; $ONLINE = ""; - if (EXT_IS_ACTIVE("autopurge")) { + $lastOnline = "%s"; $ONLINE = ''; + if (EXT_IS_ACTIVE('autopurge')) { // Use last online timestamp to keep inactive members away from here - $lastOnline = " AND last_online >= (UNIX_TIMESTAMP() - %s)"; + $lastOnline = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)"; $ONLINE = getConfig('ap_inactive_since'); } // END - if @@ -67,14 +67,14 @@ if (getConfig('beg_rallye') == "Y") { FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `status`='CONFIRMED' AND beg_points > 0".$lastOnline." ORDER BY beg_points DESC, last_online DESC, userid", - array($ONLINE), __FILE__, __LINE__); + array($ONLINE), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // List users - $OUT = "";$SW = 2; $cnt = 1; $total = 0; + $OUT = '';$SW = 2; $cnt = 1; $total = 0; while ($content = SQL_FETCHARRAY($result)) { // Init variables - $WIN1 = ""; $WIN2 = ""; + $WIN1 = ''; $WIN2 = ''; if ($cnt <= getConfig('beg_ranks')) { // Maybe he can win his active beg? $WIN1 = ""; @@ -86,12 +86,12 @@ ORDER BY beg_points DESC, last_online DESC, userid", // @TODO to shorten this block. Please also do so with uid->userid $content = array( 'uid' => $content['userid'], - 'email' => CREATE_EMAIL_LINK($content['email'], "user_data"), - 'gender' => TRANSLATE_GENDER($content['gender']), + 'email' => generateEmailLink($content['email'], 'user_data'), + 'gender' => translateGender($content['gender']), 'sname' => $content['surname'], 'fname' => $content['family'], - 'turbo' => TRANSLATE_COMMA($content['beg_points']), - 'last' => MAKE_DATETIME($content['last_online'], "2"), + 'turbo' => translateComma($content['beg_points']), + 'last' => generateDateTime($content['last_online'], '2'), 'sw' => $SW, 'win1' => $WIN1, 'win2' => $WIN2, @@ -103,10 +103,10 @@ ORDER BY beg_points DESC, last_online DESC, userid", $SW = 3 - $SW; $cnt++; $total += $content['beg_points']; } define('__BEG_ROWS', $OUT); - define('__TOTAL', TRANSLATE_COMMA($total)); + define('__TOTAL', translateComma($total)); // Check if we need to display form or not with manuel withdraw - if (getConfig('last_month') == date("m", time())) { + if (getConfig('last_month') == date('m', time())) { // Load form define('__BEG_WITHDRAW_FORM', LOAD_TEMPLATE("admin_list_beg_form", true)); } else { @@ -115,21 +115,21 @@ ORDER BY beg_points DESC, last_online DESC, userid", } // Prepare constant for timemark - if (EXT_IS_ACTIVE("autopurge")) { - define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - getConfig('ap_inactive_since'), "2")); + if (EXT_IS_ACTIVE('autopurge')) { + define('__AUTOPURGE_TIMEOUT', generateDateTime(time() - getConfig('ap_inactive_since'), '2')); } else { - define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), "autopurge")); + define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'autopurge')); } // Load final template LOAD_TEMPLATE("admin_list_beg"); } else { // No one has joined the begging rallye... - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_NO_RALLYE')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_NO_RALLYE')); } } else { // Rallye deactivated - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_RALLYE_DEACTIVATED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_RALLYE_DEACTIVATED')); } //