X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_start.php;h=f772529d41a756921168e983124638cc110a71f6;hb=508228c85fba8448d00865b1639cb8cd7a69e457;hp=fcbf2bc4e0587f8d22a86bbfa63038f9348ac630;hpb=e8a44f28a734e4796b70a1bc9df353f2466e1846;p=mailer.git diff --git a/inc/modules/member/what-surfbar_start.php b/inc/modules/member/what-surfbar_start.php index fcbf2bc4e0..f772529d41 100644 --- a/inc/modules/member/what-surfbar_start.php +++ b/inc/modules/member/what-surfbar_start.php @@ -1,7 +1,7 @@ TRANSLATE_COMMA($_CONFIG['surfbar_static_reward']), - 'surfbar_static_time' => CREATE_FANCY_TIME($_CONFIG['surfbar_static_time']), - 'surfbar_static_lock' => CREATE_FANCY_TIME($_CONFIG['surfbar_static_lock']), - 'surfbar_dynamic_percent' => TRANSLATE_COMMA($_CONFIG['surfbar_dynamic_percent']) + '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") ); -// Construct template name -$templateName = substr(basename(__FILE__), 5, -4)."_".strtolower($_CONFIG['surfbar_pay_model']); +// In dynamic mode we need some more data +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_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')) + ); +} // END - if // Load the template -LOAD_TEMPLATE($templateName, false, $content); +LOAD_TEMPLATE("member_surfbar_start_".strtolower(getConfig('surfbar_pay_model')), false, $content); + +// Load surfbar link template +LOAD_TEMPLATE("member_surfbar_link"); // ?>