X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_admin.php;h=b95db62427d6f1c07a6a70cb422d301752c2bbba;hp=90f507768dd3a5060bb0f70036a4d1b88feca1dc;hb=b73179774f08d52b76fe1836ab80f085f05f8e46;hpb=d8148e3f1f3a6762b2e786dbe99ada269dcf2ea0 diff --git a/inc/modules/admin/what-config_admin.php b/inc/modules/admin/what-config_admin.php index 90f507768d..b95db62427 100644 --- a/inc/modules/admin/what-config_admin.php +++ b/inc/modules/admin/what-config_admin.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Administratormenue einstellen * * -------------------------------------------------------------------- * - * * + * $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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,34 +37,25 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if + // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); -if (IS_FORM_SENT()) { +if (isFormSent()) { // Save configuration - ADMIN_SAVE_SETTINGS_POST(); + adminSaveSettingsFromPostData(); } else { // Prepare data for the template - switch (getConfig('admin_menu')) - { - case "NEW": - define('__ADMIN_MENU_NEW', " checked=\"checked\""); - define('__ADMIN_MENU_OLD' , ""); - break; - - case "OLD": - define('__ADMIN_MENU_NEW', ""); - define('__ADMIN_MENU_OLD' , " checked=\"checked\""); - break; - } + $content['admin_menu_new'] = ''; + $content['admin_menu_old'] = ''; + $content['admin_menu_' . strtolower(getConfig('admin_menu'))] = ' checked="checked"'; // Display form - LOAD_TEMPLATE("admin_config_admin"); + loadTemplate('admin_config_admin', false, $content); } -// +// [EOF] ?>