X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-mem_add.php;h=6fe006f2cde1c62ac7ce77f32273275c8789bbd8;hb=0e269568bd666186509e98594e83bac199ac26da;hp=e783f528c3af0b248e700b337aa6d1edfa3ccf13;hpb=08b3c51b70b6498fd92a2760979d64470ad1b586;p=mailer.git diff --git a/inc/modules/admin/what-mem_add.php b/inc/modules/admin/what-mem_add.php index e783f528c3..6fe006f2cd 100644 --- a/inc/modules/admin/what-mem_add.php +++ b/inc/modules/admin/what-mem_add.php @@ -11,9 +11,14 @@ * Kurzbeschreibung : Fuegen Sie einen weiteren Menuepunkt zum Mit- * * Mitgliedsmenue hinzu * * -------------------------------------------------------------------- * - * * + * $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 * @@ -33,43 +38,50 @@ ************************************************************************/ // 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 desciption as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); // Check if the admin has entered title and what-php file name... -if ((empty($_POST['title'])) && (isset($_POST['ok']))) { - unset($_POST['ok']); -} +if ((!isPostRequestElementSet('title')) && (isFormSent())) { + unsetPostRequestElement('ok'); +} // END - if -if (!isset($_POST['ok'])) { +if (!isFormSent()) { // Create arrays - $menus = array(); $titles = array(); $below = array(); + $menus = array(); + $titles = array(); + $below = array(); // Get all available main menus - $result = SQL_QUERY("SELECT action, title, sort FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE (what='' OR `what` IS NULL) ORDER BY `sort`", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT `action`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", + __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Read menu structure - while (list($act, $title, $sort) = SQL_FETCHROW($result)) { + // @TODO Cant this be rewritten? + while ($content = SQL_FETCHARRAY($result)) { // Menu actions - $menus[] = $act; + $menus[] = $content['action']; // Menu titles - $titles[] = $title; + $titles[] = $content['title']; // Below this menu point should the new be added so we simply increase the sort value by 1 :-) - $below[] = $sort + 1; - } + $below[] = $content['sort'] + 1; + } // END - if // Free memory SQL_FREERESULT($result); // Remove double eintries - $prev = ""; $dmy = $menus; $dmy2 = $titles; $dmy3 = $below; + // @TODO This can be somehow rewritten to a function + $prev = ''; + $dmy = $menus; + $dmy2 = $titles; + $dmy3 = $below; foreach ($menus as $key => $value) { if ($value == $prev) { // Remove entries @@ -79,15 +91,15 @@ if (!isset($_POST['ok'])) { } else { $prev = $value; } - } + } // END - foreach // Prepare variables $menus = $dmy; $titles = $dmy2; $below = $dmy3; // Load sub menus :) foreach ($menus as $key_main => $value_main) { - $result = SQL_QUERY_ESC("SELECT what, title, sort FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE `action`='%s' AND `what` != '' ORDER BY `sort`", - array($value_main), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT what, title, sort FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `action`='%s' AND `what` != '' ORDER BY `sort`", + array($value_main), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Initialize arrays $menus[$value_main] = array(); @@ -95,22 +107,23 @@ if (!isset($_POST['ok'])) { $below[$value_main] = array(); // Read menu structure - while (list($act, $title, $sort) = SQL_FETCHROW($result)) { + while ($content = SQL_FETCHARRAY($result)) { // Menu actions - $menus[$value_main][] = $act; + $menus[$value_main][] = $content['what']; // Menu titles - $titles[$value_main][] = $title; + $titles[$value_main][] = $content['title']; // Below this menu point should the new be added so we simply increase the sort value by 1 :-) - $below[$value_main][] = $sort + 1; - } + $below[$value_main][] = $content['sort'] + 1; + } // END - while // Free memory SQL_FREERESULT($result); // Remove double eintries - $prev = ""; $dmy = $menus[$value_main]; $dmy2 = $titles[$value_main]; $dmy3 = $below[$value_main]; + // @TODO This can be somehow rewritten to a function + $prev = ''; $dmy = $menus[$value_main]; $dmy2 = $titles[$value_main]; $dmy3 = $below[$value_main]; foreach ($menus[$value_main] as $key => $value) { if ($value == $prev) { unset($dmy[$key]); @@ -119,64 +132,68 @@ if (!isset($_POST['ok'])) { } else { $prev = $value; } - } - $menus[$value_main] = $dmy; $titles[$value_main] = $dmy2; $below[$value_main] = $dmy3; - } - } - } + } // END - foreach + + // Transfer variables into array + $menus[$value_main] = $dmy; + $titles[$value_main] = $dmy2; + $below[$value_main] = $dmy3; + } // END - if + } // END - foreach + } // END - if $OUT = ""; - define('__BELOW_SELECTION' , $OUT); - define('__WHAT_SELECTION' , ADMIN_MAKE_MENU_SELECTION("member", "what", "name")); - define('__ACTION_SELECTION', ADMIN_MAKE_MENU_SELECTION("member", "action", "menu")); + // Prepare selection boxes 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_member_add"); -} elseif (!IS_DEMO()) { + loadTemplate('admin_member_add', false, $content); +} elseif (!isDemoModeActive()) { // Insert new menu entry - if (!empty($_POST['menu'])) - { - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`visible`,`locked`,`sort`) VALUES ('%s','%s','%s','%s','%s','%s')", - array( - $_POST['menu'], - $_POST['name'], - $_POST['title'], - $_POST['visible'], - $_POST['active'], - bigintval($_POST['sort']), -), __FILE__, __LINE__); + if (isPostRequestElementSet('menu')) { + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_member_menu` (`action`,`what`,`title`,`visible`,`locked`,`sort`) VALUES ('%s','%s','%s','%s','%s','%s')", + array( + postRequestElement('menu'), + postRequestElement('name'), + postRequestElement('title'), + postRequestElement('visible'), + postRequestElement('active'), + bigintval(postRequestElement('sort')), + ), __FILE__, __LINE__); } else { - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`title`,`visible`,`locked`,`sort`) VALUES ('%s','%s','%s','%s','%s')", - array( - $_POST['name'], - $_POST['title'], - $_POST['visible'], - $_POST['active'], - bigintval($_POST['sort']), -), __FILE__, __LINE__); + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_member_menu` (`action`,`title`,`visible`,`locked`,`sort`) VALUES ('%s','%s','%s','%s','%s')", + array( + postRequestElement('name'), + postRequestElement('title'), + postRequestElement('visible'), + postRequestElement('active'), + bigintval(postRequestElement('sort')), + ), __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')); } //