X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fmember%2Fwhat-surfbar_list.php;h=0ceab6546121096c00cfa7a476c9d6e201c5f0db;hb=3c9762973a6349e04c677ab53bc15de1bded135a;hp=5b606d15b58dbcdfa5840c5f954f625bee812d47;hpb=97dbb1a1f2f9e582132bb81c12895503e78e7a59;p=mailer.git diff --git a/inc/modules/member/what-surfbar_list.php b/inc/modules/member/what-surfbar_list.php index 5b606d15b5..0ceab65461 100644 --- a/inc/modules/member/what-surfbar_list.php +++ b/inc/modules/member/what-surfbar_list.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Surfbar-Statistiken * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 * @@ -36,7 +41,10 @@ if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } elseif (!IS_MEMBER()) { - LOAD_URL(URL."/modules.php?module=index"); + LOAD_URL("modules.php?module=index"); +} elseif ((!EXT_IS_ACTIVE("surfbar")) && (!IS_ADMIN())) { + addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "surfbar"); + return; } // Add description as navigation point @@ -46,14 +54,17 @@ ADD_DESCR("member", __FILE__); $URLs = SURFBAR_GET_USER_URLS(); // Are there entries or form is submitted? -if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) { +if ((IS_FORM_SENT()) && (REQUEST_ISSET_POST(('action'))) && (REQUEST_ISSET_POST(('id')))) { // Process the form - if (SURFBAR_MEMBER_DO_FORM($_POST, $URLs)) { - // Action performed - LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_DONE); + if (SURFBAR_MEMBER_DO_FORM(REQUEST_POST_ARRAY(), $URLs)) { + // Action performed but shall we display it? + if (((REQUEST_POST('action') != "edit") && (REQUEST_POST('action') != "delete")) || (REQUEST_ISSET_POST(('execute')))) { + // Display "action done" message if action is wether 'edit' nor 'delete' or has been executed + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_SURFBAR_ACTION_DONE')); + } // END - if } else { // Something went wrong - LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_ACTION_FAILED); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_SURFBAR_ACTION_FAILED')); } } elseif (count($URLs) > 0) { // List all URLs @@ -64,7 +75,7 @@ if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) $content['url'] = DEREFERER($content['url']); if ($content['views_total'] > 0) { // Include link to stats - $content['views_total'] = "[".TRANSLATE_COMMA($content['views_total'])."]"; + $content['views_total'] = "[".TRANSLATE_COMMA($content['views_total'])."]"; } // END - if $content['registered'] = MAKE_DATETIME($content['registered'], "2"); $content['last_locked'] = MAKE_DATETIME($content['last_locked'], "2"); @@ -86,7 +97,7 @@ if ((isset($_POST['ok'])) && (isset($_POST['action'])) && (isset($_POST['id']))) LOAD_TEMPLATE("member_surfbar_list", false, $OUT); } else { // No URLs booked so far - LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_SURFBAR_NO_URLS_FOUND); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_SURFBAR_NO_URLS_FOUND')); } //