]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-guest_add.php
Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / admin / what-guest_add.php
index 871cd7039df0036b2175a765f6c9057f78010fd1..f23636efd305a9b921f88c0ee0f8564dc417c357 100644 (file)
@@ -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 *
  ************************************************************************/
 
 // 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();
 }
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Check if the admin has entered title and what-php file name...
-if (((!REQUEST_ISSET_POST('title')) || (!REQUEST_ISSET_POST(('menu')))) && (isFormSent())) {
+if (((!isPostRequestElementSet('title')) || (!isPostRequestElementSet(('menu')))) && (isFormSent())) {
        // Abort adding the menu entry
-       REQUEST_UNSET_POST('ok');
+       unsetPostRequestElement('ok');
 } // END - if
 
 if (!isFormSent()) {
@@ -56,7 +55,7 @@ if (!isFormSent()) {
        $menus = array(); $titles = array(); $below = array();
 
        // Get all available main menus
-       $result = SQL_QUERY("SELECT action, title, sort FROM `{!_MYSQL_PREFIX!}_guest_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort`", __FILE__, __LINE__);
+       $result = SQL_QUERY("SELECT action, title, sort FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort`", __FILE__, __LINE__);
        if (SQL_NUMROWS($result) > 0) {
                // Read menu structure
                // @TODO Cant this be rewritten?
@@ -95,7 +94,7 @@ if (!isFormSent()) {
                // Load sub menus :)
                foreach ($menus as $key_main => $value_main) {
                        $result = SQL_QUERY_ESC("SELECT what, title, sort
-FROM `{!_MYSQL_PREFIX!}_guest_menu`
+FROM `{?_MYSQL_PREFIX?}_guest_menu`
 WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort`",
                        array($value_main), __FILE__, __LINE__);
                        if (SQL_NUMROWS($result) > 0) {
@@ -159,38 +158,39 @@ WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort`",
        }
        $OUT .= "</select>";
 
-       define('__BELOW_SELECTION' , $OUT);
-       define('__WHAT_SELECTION'  , ADMIN_MAKE_MENU_SELECTION('guest', 'what', "name"));
-       define('__ACTION_SELECTION', ADMIN_MAKE_MENU_SELECTION('guest', 'action', "menu"));
+       // Prepare selections for template
+       $content['below_selection']  = $OUT;
+       $content['what_selection']   = adminAddMenuSelectionBox('member', 'what'  , 'name');
+       $content['action_selection'] = adminAddMenuSelectionBox('member', 'action', 'menu');
 
        // Display form
-       LOAD_TEMPLATE("admin_guest_add");
-} elseif (!IS_DEMO()) {
+       loadTemplate('admin_guest_add', false, $content);
+} elseif (!isDemoModeActive()) {
        // Insert new menu entry
-       if (REQUEST_ISSET_POST(('menu'))) {
-               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_guest_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('%s','%s','%s','%s','%s','%s')",
+       if (isPostRequestElementSet(('menu'))) {
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('%s','%s','%s','%s','%s','%s')",
                array(
-               REQUEST_POST('menu'),
-               REQUEST_POST('name'),
-               REQUEST_POST('title'),
-               bigintval(REQUEST_POST('sort')),
-               REQUEST_POST('visible'),
-               REQUEST_POST('active'),
+               postRequestElement('menu'),
+               postRequestElement('name'),
+               postRequestElement('title'),
+               bigintval(postRequestElement('sort')),
+               postRequestElement('visible'),
+               postRequestElement('active'),
                ), __FILE__, __LINE__);
        } else {
-               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_guest_menu` (action, title, sort, visible, locked) VALUES ('%s','%s','%s','%s','%s')",
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (action, title, sort, visible, locked) VALUES ('%s','%s','%s','%s','%s')",
                array(
-               REQUEST_POST('name'),
-               REQUEST_POST('title'),
-               bigintval(REQUEST_POST('sort')),
-               REQUEST_POST('visible'),
-               REQUEST_POST('active'),
+               postRequestElement('name'),
+               postRequestElement('title'),
+               bigintval(postRequestElement('sort')),
+               postRequestElement('visible'),
+               postRequestElement('active'),
                ), __FILE__, __LINE__);
        }
-       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('SETTINGS_SAVED'));
+       loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED'));
 } else {
        // Demo mode!
-       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('SETTINGS_NOT_SAVED'));
+       loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_NOT_SAVED'));
 }
 
 //