X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_start.php;h=588f0f2097dcb3982641bf2b4245d9643ff7eda0;hb=697b58fb2ea96a64370d9f8d23e2f8d414385d79;hp=89bd0c82ec15d2af247f0c87877ac9132378e679;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;p=mailer.git diff --git a/inc/modules/member/what-surfbar_start.php b/inc/modules/member/what-surfbar_start.php index 89bd0c82ec..588f0f2097 100644 --- a/inc/modules/member/what-surfbar_start.php +++ b/inc/modules/member/what-surfbar_start.php @@ -14,10 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,45 +43,31 @@ if (!defined('__SECURITY')) { } // Add description as navigation point -addMenuDescription('member', __FILE__); +addYouAreHereLink('member', __FILE__); if ((!isExtensionActive('surfbar')) && (!isAdmin())) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('surfbar')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=surfbar%}'); return; } // END - if // Prepare content for output $content = array( - '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') { - // Total URLs +if (getSurfbarPaymentModel() == 'DYNAMIC') { + // Prepare content for dynamic surfbar $content = array( - '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' => translateComma(countSumTotalData('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')) + 'surfbar_total_urls' => SURFBAR_GET_TOTAL_URLS('ACTIVE', 0), ); } // END - if // Load the template -loadTemplate('member_surfbar_start_' . strtolower(getConfig('surfbar_pay_model')), false, $content); +loadTemplate('member_surfbar_start_' . strtolower(getSurfbarPaymentModel()), false, $content); // Load surfbar link template loadTemplate('member_surfbar_link'); -// +// [EOF] ?>