X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_bonus.php;h=de9ce4083e5ac286353e1a1215722fe016c5a8d4;hp=37786312a1a2c900ae8717634c4cd4cbba586ba8;hb=a090e351c49fe021fb3064325694da03402332e0;hpb=f212df3d9d1d3c7f8632040130be9e7160980de6 diff --git a/inc/modules/admin/what-list_bonus.php b/inc/modules/admin/what-list_bonus.php index 37786312a1..de9ce4083e 100644 --- a/inc/modules/admin/what-list_bonus.php +++ b/inc/modules/admin/what-list_bonus.php @@ -43,26 +43,26 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); -if (getConfig('bonus_active') == "Y") { +if (getConfig('bonus_active') == '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_BONUS_WITHDRAW_PREPARED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_WITHDRAW_PREPARED')); } - if (GET_EXT_VERSION("bonus") >= "0.6.9") { + if (GET_EXT_VERSION('bonus') >= '0.6.9') { // Add more bonus points here $USE = "(0"; - if (getConfig('bonus_click_yn') == "Y") $USE .= " + turbo_bonus"; - if (getConfig('bonus_login_yn') == "Y") $USE .= " + login_bonus"; - if (getConfig('bonus_order_yn') == "Y") $USE .= " + bonus_order"; - if (getConfig('bonus_stats_yn') == "Y") $USE .= " + bonus_stats"; - if (getConfig('bonus_ref_yn') == "Y") $USE .= " + bonus_ref"; + if (getConfig('bonus_click_yn') == 'Y') $USE .= " + turbo_bonus"; + if (getConfig('bonus_login_yn') == 'Y') $USE .= " + login_bonus"; + if (getConfig('bonus_order_yn') == 'Y') $USE .= " + bonus_order"; + if (getConfig('bonus_stats_yn') == 'Y') $USE .= " + bonus_stats"; + if (getConfig('bonus_ref_yn') == 'Y') $USE .= " + bonus_ref"; $USE .= ")"; } else { // Old version ??? @@ -70,8 +70,8 @@ if (getConfig('bonus_active') == "Y") { } // 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)"; $ONLINE = getConfig('ap_inactive_since'); @@ -86,13 +86,13 @@ ORDER BY points DESC, last_online DESC, userid", 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)) { // Add total points $total += $content['points']; // Generate array fore the dynamic template - $WIN1 = ""; $WIN2 = ""; + $WIN1 = ''; $WIN2 = ''; if ($cnt <= getConfig('bonus_ranks')) { // Maybe he can win his active bonus? $WIN1 = ""; @@ -127,21 +127,21 @@ ORDER BY points DESC, last_online DESC, userid", } // Prepare constant for timemark - if (EXT_IS_ACTIVE("autopurge")) { + if (EXT_IS_ACTIVE('autopurge')) { define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(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_bonus"); } else { // No one has become an "activity bonus"... - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BONUS_NO_ACTIVE_RALLYE')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_NO_ACTIVE_RALLYE')); } } else { // Aktive-Rallye not activated - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BONUS_RALLYE_DEACTIVATED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_RALLYE_DEACTIVATED')); } //