X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_start.php;h=f772529d41a756921168e983124638cc110a71f6;hb=508228c85fba8448d00865b1639cb8cd7a69e457;hp=7e2f7036bb4e3e6df42a2a3711afd95d0187a8eb;hpb=939bce138060b727dc96764df88fbb8e4e7049c7;p=mailer.git diff --git a/inc/modules/member/what-surfbar_start.php b/inc/modules/member/what-surfbar_start.php index 7e2f7036bb..f772529d41 100644 --- a/inc/modules/member/what-surfbar_start.php +++ b/inc/modules/member/what-surfbar_start.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Gibt ein paar Infos zur Surfbar und Startlink * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -38,8 +43,8 @@ if (!defined('__SECURITY')) { } elseif (!IS_MEMBER()) { // Not logged in LOAD_URL("modules.php?module=index"); -} elseif (!EXT_IS_ACTIVE("surfbar")) { - ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "surfbar"); +} elseif ((!EXT_IS_ACTIVE("surfbar")) && (!IS_ADMIN())) { + addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "surfbar"); return; } @@ -48,17 +53,17 @@ ADD_DESCR("member", __FILE__); // Prepare content for output $content = array( - 'surfbar_static_reward' => 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_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") ); // In dynamic mode we need some more data -if ($_CONFIG['surfbar_pay_model'] == "DYNAMIC") { +if (getConfig('surfbar_pay_model') == "DYNAMIC") { // Total URLs $content = array( - 'surfbar_dynamic_percent' => TRANSLATE_COMMA($_CONFIG['surfbar_dynamic_percent']), + '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(), @@ -68,13 +73,13 @@ if ($_CONFIG['surfbar_pay_model'] == "DYNAMIC") { '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($_CONFIG['surfbar_static_reward']), - 'surfbar_static_time' => CREATE_FANCY_TIME($_CONFIG['surfbar_static_time']) + '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("member_surfbar_start_".strtolower($_CONFIG['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");