X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_admin.php;h=b95db62427d6f1c07a6a70cb422d301752c2bbba;hb=1c3cf7c8bd60ea09a2b268e37a2cb2d0ee0cdeef;hp=47bd9301b0b7ab9ccc7281d845333b0283a5547b;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/modules/admin/what-config_admin.php b/inc/modules/admin/what-config_admin.php index 47bd9301b0..b95db62427 100644 --- a/inc/modules/admin/what-config_admin.php +++ b/inc/modules/admin/what-config_admin.php @@ -17,7 +17,7 @@ * 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 * @@ -37,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', ' chkecked="checked"'); - define('__ADMIN_MENU_OLD' , ''); - break; - - case "OLD": - define('__ADMIN_MENU_NEW', ''); - define('__ADMIN_MENU_OLD' , ' chkecked="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] ?>