X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_start.php;h=21ce6ee83cbfadea971a91d710ed3ab973bb10d9;hp=13837e422c7791e33561416adca0cb14d1f64c2f;hb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;hpb=3daede4c904e23905c3e48dd6749019deca0a0e0 diff --git a/inc/modules/member/what-surfbar_start.php b/inc/modules/member/what-surfbar_start.php index 13837e422c..21ce6ee83c 100644 --- a/inc/modules/member/what-surfbar_start.php +++ b/inc/modules/member/what-surfbar_start.php @@ -1,7 +1,7 @@ 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_total_urls' => SURFBAR_GET_TOTAL_URLS('ACTIVE', 0) ); // In dynamic mode we need some more data -if (getConfig('surfbar_pay_model') == "DYNAMIC") { - // Total URLs +if (getConfig('surfbar_pay_model') == 'DYNAMIC') { + // Prepare content for dynamic surfbar $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')) + 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS('ACTIVE', 0), ); } // END - if // Load the template -LOAD_TEMPLATE("member_surfbar_start_".strtolower(getConfig('surfbar_pay_model')), false, $content); +loadTemplate('member_surfbar_start_' . strtolower(getConfig('surfbar_pay_model')), false, $content); // Load surfbar link template -LOAD_TEMPLATE("member_surfbar_link"); +loadTemplate('member_surfbar_link'); -// +// [EOF] ?>