X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_start.php;h=8a1043942c7930e6f14a4057f5c7d95e6f15cec4;hb=f577a47a8149d34039aa3c4921c35a38fcb2f2a3;hp=c04e1abe3af96ab98f399897f9d50b5a798cbef9;hpb=de454a4f3cba4ac73cb9a0bc4dc02f81bdd4e53f;p=mailer.git diff --git a/inc/modules/member/what-surfbar_start.php b/inc/modules/member/what-surfbar_start.php index c04e1abe3a..8a1043942c 100644 --- a/inc/modules/member/what-surfbar_start.php +++ b/inc/modules/member/what-surfbar_start.php @@ -38,13 +38,13 @@ // Some security stuff... if (!defined('__SECURITY')) { - $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); } elseif (!IS_MEMBER()) { // Not logged in - LOAD_URL('modules.php?module=index'); + redirectToUrl('modules.php?module=index'); } elseif ((!EXT_IS_ACTIVE('surfbar')) && (!IS_ADMIN())) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'surfbar'); + addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveMessage('surfbar')); return; } @@ -53,36 +53,36 @@ ADD_DESCR('member', __FILE__); // Prepare content for output $content = array( - 'surfbar_static_reward' => TRANSLATE_COMMA(getConfig('surfbar_static_reward')), - 'surfbar_static_time' => CREATE_FANCY_TIME(getConfig('surfbar_static_time')), - 'surfbar_static_lock' => CREATE_FANCY_TIME(getConfig('surfbar_static_lock')), - 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS("ACTIVE", "0") + 'surfbar_static_reward' => translateComma(getConfig('surfbar_static_reward')), + 'surfbar_static_time' => createFancyTime(getConfig('surfbar_static_time')), + 'surfbar_static_lock' => createFancyTime(getConfig('surfbar_static_lock')), + 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS('ACTIVE', '0') ); // In dynamic mode we need some more data -if (getConfig('surfbar_pay_model') == "DYNAMIC") { +if (getConfig('surfbar_pay_model') == 'DYNAMIC') { // Total URLs $content = array( - 'surfbar_dynamic_percent' => TRANSLATE_COMMA(getConfig('surfbar_dynamic_percent')), - 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS("ACTIVE", "0"), + 'surfbar_dynamic_percent' => translateComma(getConfig('surfbar_dynamic_percent')), + 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS('ACTIVE', '0'), 'surfbar_user_urls' => SURFBAR_GET_TOTAL_USER_URLS(), 'surfbar_total_online' => SURFBAR_DETERMINE_TOTAL_ONLINE(), - 'surfbar_total_users' => TRANSLATE_COMMA(GET_TOTAL_DATA("CONFIRMED", "user_data", 'userid', "status", true)), - 'surfbar_min_reward' => TRANSLATE_COMMA(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()), - 'surfbar_max_reward' => TRANSLATE_COMMA(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()), - 'surfbar_min_time' => CREATE_FANCY_TIME(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()), - 'surfbar_max_time' => CREATE_FANCY_TIME(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()), - 'surfbar_dynamic_lock' => CREATE_FANCY_TIME(SURFBAR_CALCULATE_DYNAMIC_LOCK()), - 'surfbar_static_reward' => TRANSLATE_COMMA(getConfig('surfbar_static_reward')), - 'surfbar_static_time' => CREATE_FANCY_TIME(getConfig('surfbar_static_time')) + 'surfbar_total_users' => translateComma(GET_TOTAL_DATA('CONFIRMED', 'user_data', 'userid', 'status', true)), + 'surfbar_min_reward' => translateComma(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()), + 'surfbar_max_reward' => translateComma(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()), + 'surfbar_min_time' => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE()), + 'surfbar_max_time' => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE()), + 'surfbar_dynamic_lock' => createFancyTime(SURFBAR_CALCULATE_DYNAMIC_LOCK()), + 'surfbar_static_reward' => translateComma(getConfig('surfbar_static_reward')), + 'surfbar_static_time' => createFancyTime(getConfig('surfbar_static_time')) ); } // END - if // Load the template -LOAD_TEMPLATE("member_surfbar_start_".strtolower(getConfig('surfbar_pay_model')), false, $content); +LOAD_TEMPLATE('member_surfbar_start_' . strtolower(getConfig('surfbar_pay_model')), false, $content); // Load surfbar link template -LOAD_TEMPLATE("member_surfbar_link"); +LOAD_TEMPLATE('member_surfbar_link'); // ?>