X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_surfbar_url.php;h=521ebfcdae2322d714cacd3fc7d797798e20c92b;hp=93c63c81b3cd4b303efa22ae8018b339957f982b;hb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5 diff --git a/inc/modules/admin/what-add_surfbar_url.php b/inc/modules/admin/what-add_surfbar_url.php index 93c63c81b3..521ebfcdae 100644 --- a/inc/modules/admin/what-add_surfbar_url.php +++ b/inc/modules/admin/what-add_surfbar_url.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Admin kann eigene URLs der Surfbar hinzufuegen * * -------------------------------------------------------------------- * - * * + * $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 * @@ -32,28 +37,39 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!is_admin())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR('admin', __FILE__); // Was an URL added? -if ((isset($_POST['add'])) && (!empty($_POST['url']))) { +if ((REQUEST_ISSET_POST(('add'))) && (REQUEST_ISSET_POST('url'))) { + // Dummy variables + $DATA = array(); $id = "reload_ye"; $skip = false; + + // Convert the "reload selections" + convertSelectionsToTimestamp(REQUEST_POST_ARRAY(), $DATA, $id, $skip); + // Then add this URL - if (SURFBAR_ADMIN_ADD_URL($_POST['url'])) { + if (SURFBAR_ADMIN_ADD_URL(REQUEST_POST('url'), REQUEST_POST('limit'), REQUEST_POST('reload'))) { // URL was added - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_URL_ADDED); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_ADDED')); } else { // Not added - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_URL_NOT_ADDED); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_NOT_ADDED')); } } // END - if +// Prepare content for template +$content = array( + 'reload' => createTimeSelections(0, "reload", "WDhms") +); + // Load template -LOAD_TEMPLATE("admin_add_surfbar_url"); +LOAD_TEMPLATE("admin_add_surfbar_url", false, $content); // ?>