Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / admin / what-adminedit.php
index 761e902496f60d9393053f69619076b3ea5911e4..84ccdcfe2b04d73214c6094612b11c49e4100314 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/05/2003 *
- * ===============                              Last change: 12/13/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/05/2003 *
+ * ===================                          Last change: 12/13/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-adminedit.php                               *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Das Admin-Menue editieren                        *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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", basename(__FILE__));
+addYouAreHereLink('admin', __FILE__);
 
 // Do we edit/delete/change main menus or sub menus?
-$AND = "what=''"; $SUB = "";
-if (!empty($_GET['sub']))
-{
-       $AND = sprintf("action='%s'", SQL_ESCAPE($_GET['sub']));
-       $SUB = SQL_ESCAPE($_GET['sub']);
-}
-
-// Get count of (maybe) selected menu points
-$chk = 0;
-if (!empty($_POST['sel'])) $chk = SELECTION_COUNT($_POST['sel']);
-
-OPEN_TABLE("100%", "admin_content admin_content_align", "");
+$AND = "(`what` = '' OR `what` IS NULL)"; $subMenu = '';
+if (isGetRequestElementSet('sub')) {
+       $AND = sprintf("`action`='%s' AND `what` != '' AND `what` IS NOT NULL", getRequestElement('sub'));
+       $subMenu = getRequestElement('sub');
+} // END - if
 
 // List all menu points and make them editable
-OUTPUT_HTML("<br /><br /></FONT>
-<DIV align=\"center\">");
-if ((isset($_POST['edit'])) && ($chk > 0) && (!IS_DEMO()))
-{
+if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
        // Edit menu entries
-       define('__SUB_VALUE', $SUB);
-       define('__CHK_VALUE', $chk);
-       $cnt = 0; $SW = 2;
-       foreach ($_POST['sel'] as $sel=>$confirm)
-       {
-               if ($confirm == 1)
-               {
-                       $cnt++;
-                       $result = SQL_QUERY_ESC("SELECT title, action, what, descr FROM "._MYSQL_PREFIX."_admin_menu WHERE ".$AND." AND id=%d LIMIT 1",
-                        array(bigintval($sel)), __FILE__, __LINE__);
-                       if (SQL_NUMROWS($result) == 1)
-                       {
+       // @TODO Kill all constants in this file
+       $content['sub'] = $subMenu;
+       $content['chk'] = countPostSelection();
+       $count = '0'; $OUT = '';
+       foreach (postRequestElement('sel') as $sel => $confirm) {
+               if ($confirm == 1) {
+                       $count++;
+                       $result = SQL_QUERY_ESC("SELECT `title`,`action`,`what`,`descr` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$AND." AND `id`=%s LIMIT 1",
+                               array(bigintval($sel)), __FILE__, __LINE__);
+                       if (SQL_NUMROWS($result) == 1) {
                                // Entry found so we load the stuff...
-                               list($menu, $act, $wht, $descr) = SQL_FETCHROW($result);
-                               SQL_FREERESULT($result);
+                               $content = SQL_FETCHARRAY($result);
 
                                // Prepare data for the row template
                                $content = array(
-                                       'action' => ADMIN_MAKE_MENU_SELECTION("admin", "action", "sel_action[".$sel."]", $act),
-                                       'what'   => ADMIN_MAKE_MENU_SELECTION("admin", "what", "sel_what[".$sel."]", $wht),
-                                       'sw'     => $SW,
+                                       'action' => adminAddMenuSelectionBox('admin', 'action', 'sel_action[' . $sel . ']', $content['action']),
+                                       'what'   => adminAddMenuSelectionBox('admin', 'what'  , 'sel_what['   . $sel . ']', $content['what']),
                                        'sel'    => $sel,
-                                       'menu'   => $menu,
-                                       'descr'  => $descr,
-                                       'cnt'    => $cnt,
+                                       'menu'   => $content['title'],
+                                       'descr'  => $content['descr'],
+                                       'count'  => $count,
                                );
-                               $OUT .= LOAD_TEMPLATE("admin_amenu_edit_row", true, $content);
-                       }
-                        else
-                       {
+
+                               // Load row template
+                               $OUT .= loadTemplate('admin_edit_admin_menu_row', true, $content);
+                       } else {
                                // Entry not found?
                                $content = array(
-                                       'sw'  => $SW,
                                        'sel' => $sel
                                );
-                               $OUT .= LOAD_TEMPLATE("admin_menu_404_row", true, $content);
+
+                               // Load row template
+                               $OUT .= loadTemplate('admin_menu_404_row', true, $content);
                        }
-                       $SW = 3 - $SW;
-               }
-       }
-       define('__MENU_ROWS', $OUT);
-       define('__CNT_VALUE', $cnt);
+
+                       // Free result and switch color
+                       SQL_FREERESULT($result);
+               } // END - if
+       } // END - foreach
+
+       $content['rows']  = $OUT;
+       $content['sub']   = $subMenu;
+       $content['chk']   = countPostSelection();
+       $content['count'] = $count;
 
        // Load template
-       LOAD_TEMPLATE("admin_amenu_edit_form");
-}
- elseif ((isset($_POST['del'])) && (!IS_DEMO()))
-{
-       define('__SUB_VALUE', $SUB);
-       define('__CHK_VALUE', $chk);
+       loadTemplate('admin_edit_admin_menu_form', false, $content);
+} elseif ((isFormSent('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
+       // Prepare misc content
+       $content['sub'] = $subMenu;
+       $content['chk'] = countPostSelection();
+
        // Del menu entries with or without confirmation
-       $SW = 2; $cnt = 0; $OUT = "";
-       foreach ($_POST['sel'] as $sel=>$confirm)
-       {
-               if ($confirm == 1)
-               {
-                       $cnt++;
-                       $result = SQL_QUERY_ESC("SELECT title FROM "._MYSQL_PREFIX."_admin_menu WHERE ".$AND." AND id=%d LIMIT 1",
-                        array(bigintval($sel)), __FILE__, __LINE__);
-                       if (SQL_NUMROWS($result) == 1)
-                       {
+       $count = '0'; $OUT = '';
+       foreach (postRequestElement('sel') as $sel => $confirm) {
+               if ($confirm == 1) {
+                       $count++;
+                       $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$AND." AND `id`=%s LIMIT 1",
+                               array(bigintval($sel)), __FILE__, __LINE__);
+                       if (SQL_NUMROWS($result) == 1) {
                                // Entry found so we load the stuff...
-                               list($menu) = SQL_FETCHROW($result);
-                               SQL_FREERESULT($result);
+                               $content = SQL_FETCHARRAY($result);
 
                                // Prepare data for the row template
                                $content = array(
-                                       'menu' => $menu,
-                                       'cnt'  => $cnt,
-                                       'sel'  => $sel,
-                                       'sw'   => $SW
+                                       'menu'  => $content['title'],
+                                       'count' => $count,
+                                       'sel'   => $sel,
                                );
-                               $OUT .= LOAD_TEMPLATE("admin_amenu_delete_row", true, $content);
-                       }
-                        else
-                       {
+                               $OUT .= loadTemplate('admin_delete_admin_menu_row', true, $content);
+                       } else {
                                // Entry not found?
                                $content = array(
-                                       'sw'  => $SW,
                                        'sel' => $sel
                                );
-                               $OUT .= LOAD_TEMPLATE("admin_menu_404_row", true, $content);
+                               $OUT .= loadTemplate('admin_menu_404_row', true, $content);
                        }
-                       $SW = 3 - $SW;
-               }
-       }
-       define('__MENU_ROWS', $OUT);
-       define('__CNT_VALUE', $cnt);
+                       SQL_FREERESULT($result);
+               } // END - if
+       } // END - switch
+
+       $content['rows']  = $OUT;
+       $content['sub']   = $subMenu;
+       $content['chk']   = countPostSelection();
+       $content['count'] = $count;
 
        // Load template
-       LOAD_TEMPLATE("admin_amenu_delete");
-}
- elseif ((isset($_POST['ok'])) && (!IS_DEMO()))
-{
+       loadTemplate('admin_delete_admin_menu', false, $content);
+} elseif ((isFormSent()) && (!isDemoModeActive())) {
        // An action is done...
-       switch ($_POST['ok'])
-       {
-       case "edit": // Edit menu
-               foreach ($_POST['sel'] as $sel=>$menu)
-               {
-                       // Secure ID
-                       $sel = bigintval($sel);
-
-                       // Update entry
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_admin_menu SET
-title='%s',
-action='%s',
-what='%s',
-descr='%s'
-WHERE ".$AND." AND id=%d LIMIT 1",
- array(
-       $menu,
-       $_POST['sel_action'][$sel],
-       $_POST['sel_what'][$sel],
-       addslashes($_POST['sel_desc'][$sel]),
-       $sel,
-), __FILE__, __LINE__);
-               }
-               LOAD_TEMPLATE("admin_data_saved");
-               break;
-
-       case "del": // Delete menu
-               foreach ($_POST['sel'] as $sel=>$menu)
-               {
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE ".$AND." AND id=%d LIMIT 1",
-                        array(bigintval($sel)), __FILE__, __LINE__);
-               }
-               LOAD_TEMPLATE("admin_data_saved");
-               break;
-
-       default: // Unexpected action
-               define('__OK_VALUE', $_POST['ok']);
-               LOAD_TEMPLATE("admin_menu_unknown_okay");
-               break;
-       }
-}
- else
-{
-       if ((!empty($_GET['act'])) && (!empty($_GET['tid'])) && (!empty($_GET['fid'])))
-       {
-               // Get IDs
-               if (!empty($_GET['w']))
-               {
-                       // Sub menus selected
-                       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admin_menu WHERE action='%s' AND sort='%s' LIMIT 1",
-                        array($_GET['act'], bigintval($_GET['tid'])), __FILE__, __LINE__);
-                       list($tid) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-                       $result = SQL_QUERY("SELECT id FROM "._MYSQL_PREFIX."_admin_menu WHERE action='%s' AND sort='%s' LIMIT 1",
-                        array($_GET['act'], bigintval($_GET['fid'])), __FILE__, __LINE__);
-                       list($fid) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-               }
-                else
-               {
-                       // Main menu selected
-                       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admin_menu WHERE what='' AND sort='%s' LIMIT 1",
-                        array(bigintval($_GET['tid'])), __FILE__, __LINE__);
-                       list($tid) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-                       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admin_menu WHERE what='' AND sort='%s' LIMIT 1",
-                        array(bigintval($_GET['fid'])), __FILE__, __LINE__);
-                       list($fid) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-               }
-
-               if ((!empty($tid)) && (!empty($fid)))
-               {
-                       // Sort menu
-                       $result_sort = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_admin_menu SET sort='%s' WHERE ".$AND." AND id=%d LIMIT 1",
-                        array(bigintval($_GET['tid']), bigintval($fid)), __FILE__, __LINE__);
-                       $result_sort = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_admin_menu SET sort='%s' WHERE ".$AND." AND id=%d LIMIT 1",
-                        array(bigintval($_GET['fid']), bigintval($tid)), __FILE__, __LINE__);
-               }
-       }
+       switch (postRequestElement('ok')) {
+               case 'edit': // Edit menu
+                       foreach (postRequestElement('sel') as $sel => $menu) {
+                               // Secure id
+                               $sel = bigintval($sel);
+
+                               // Update entry
+                               SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_admin_menu`
+SET
+       `title`='%s',
+       `action`='%s',
+       `what`='%s',
+       `descr`='%s'
+WHERE
+       ".$AND." AND
+       `id`=%s
+LIMIT 1",
+                               array(
+                                       $menu,
+                                       postRequestElement('sel_action', $sel),
+                                       postRequestElement('sel_what', $sel),
+                                       postRequestElement('sel_desc', $sel),
+                                       $sel,
+                               ), __FILE__, __LINE__);
+                       }
 
-       // By default list menus
-       if (!empty($SUB))
-       {
-               // Sub menus of a main menu
-               $result = SQL_QUERY_ESC("SELECT id, action, what, title, sort FROM "._MYSQL_PREFIX."_admin_menu WHERE action='%s' AND what != '' ORDER BY sort ASC",
-                array($SUB), __FILE__, __LINE__);
-       }
-        else
-       {
-               // Main menus
-               $result = SQL_QUERY("SELECT id, action, what, title, sort FROM "._MYSQL_PREFIX."_admin_menu WHERE what='' ORDER BY sort ASC", __FILE__, __LINE__);
-       }
-       $max = SQL_NUMROWS($result);
-       if ($max > 0)
-       {
-               define('__SUB_VALUE', $SUB);
-               $SW = 2; $cnt = 0; $OUT = "";
-               while (list($id, $act, $wht, $title, $sort) = SQL_FETCHROW($result))
-               {
-                       $cnt++;
-                       if (($sort == 0) || (($sort == 1) && (!empty($SUB))))
-                       {
+                       // Load template
+                       displayMessage('{--SETTINGS_SAVED--}');
+                       break;
+
+               case 'delete': // Delete menu
+                       foreach (postRequestElement('sel') as $sel => $menu) {
+                               SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$AND." AND `id`=%s LIMIT 1",
+                                       array(bigintval($sel)), __FILE__, __LINE__);
+                       } // END - foreach
+
+                       // Load template
+                       displayMessage('{--SETTINGS_SAVED--}');
+                       break;
+
+               default: // Unexpected action
+                       logDebugMessage(__FILE__, __LINE__, sprintf("Unsupported action %s detected.", postRequestElement('ok')));
+                       displayMessage('{%message,ADMIN_UNKNOWN_OKAY=' . postRequestElement('ok') . '%}');
+                       break;
+       } // END - switch
+} else {
+       // Handle weightning
+       doAdminProcessMenuWeightning('admin', $AND);
+
+       // Run SQL
+       $result = SQL_QUERY("SELECT `id`,`action`,`what`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE ".$AND." ORDER BY `sort` ASC", __FILE__, __LINE__);
+
+       // Are there entries?
+       if (!SQL_HASZERONUMS($result)) {
+               // Init variables
+               $OUT = '';
+               $count = '0';
+
+               // Process all entries
+               while ($content = SQL_FETCHARRAY($result)) {
+                       // Remember sub value
+                       $content['sub'] = $subMenu;
+
+                       // Count this entry
+                       $count++;
+
+                       // Init navigation variable
+                       $content['navi'] = '';
+                       if (($content['sort'] == '0') || (($content['sort'] == 1) && (!empty($subMenu)))) {
                                // Is highest position
-                               $NAVI = "<A href=\"".URL."/modules.php?module=admin&amp;what=adminedit&amp;sub=".$SUB."&amp;act=".$act."&amp;w=".$wht."&amp;tid=".($sort+1)."&amp;fid=".$sort."\">".LOWER."</A>";
-                       }
-                        elseif ($cnt == $max)
-                       {
+                               $content['navi'] = '<a href="{%url=modules.php?module=admin&amp;what=adminedit&amp;sub=' . $content['sub'] . '&amp;act=' . $content['action'] . '&amp;w=' . $content['what'] . '&amp;tid=' . ($content['sort']+1) . '&amp;fid=' . $content['sort'] . '%}">{--LOWER--}</a>';
+                       } elseif (SQL_NUMROWS($result) == $count) {
                                // Is lowest position
-                               $NAVI = "<A href=\"".URL."/modules.php?module=admin&amp;what=adminedit&amp;sub=".$SUB."&amp;act=".$act."&amp;w=".$wht."&amp;tid=".($sort-1)."&amp;fid=".$sort."\">".HIGHER."</A>";
-                       }
-                        elseif ($sort > 0)
-                       {
+                               $content['navi'] = '<a href="{%url=modules.php?module=admin&amp;what=adminedit&amp;sub=' . $content['sub'] . '&amp;act=' . $content['action'] . '&amp;w=' . $content['what'] . '&amp;tid=' . ($content['sort']-1) . '&amp;fid=' . $content['sort'] . '%}">{--HIGHER--}</a>';
+                       } elseif ($content['sort'] > 0) {
                                // Anything else between highest and lowest
-                               $NAVI = "<A href=\"".URL."/modules.php?module=admin&amp;what=adminedit&amp;sub=".$SUB."&amp;act=".$act."&amp;w=".$wht."&amp;tid=".($sort-1)."&amp;fid=".$sort."\">".HIGHER."</A>/<A href=\"".URL."/modules.php?module=admin&amp;what=adminedit&amp;sub=".$SUB."&amp;act=".$act."&amp;w=".$wht."&amp;tid=".($sort+1)."&amp;fid=".$sort."\">".LOWER."</A>";
+                               $content['navi'] = '<a href="{%url=modules.php?module=admin&amp;what=adminedit&amp;sub=' . $content['sub'] . '&amp;act=' . $content['action'] . '&amp;w=' . $content['what'] . '&amp;tid=' . ($content['sort']-1) . '&amp;fid=' . $content['sort'] . '%}">{--HIGHER--}</a>|<a href="{%url=modules.php?module=admin&amp;what=adminedit&amp;sub=' . $content['sub'] . '&amp;act=' . $content['action'] . '&amp;w=' . $content['what'] . '&amp;tid=' . ($content['sort']+1) . '&amp;fid=' . $content['sort'] . '%}">{--LOWER--}</a>';
                        }
 
-                       if (empty($act)) $act = "&nbsp;";
-                       if (empty($wht))   $wht   = "&nbsp;";
-                       if (empty($title))  $title  = "&nbsp;";
+                       // Add more data to $content
+                       $content['do'] = 'admin';
+
+                       // Load row template and switch colors
+                       $OUT .= loadTemplate('admin_menu_overview_row', true, $content);
+               } // END - switch
 
-                       $content = array(
-                               'sw'     => $SW,
-                               'id'     => $id,
-                               'action' => $act,
-                               'what'   => $wht,
-                               'title'  => $title,
-                               'navi'   => $NAVI,
-                               'mode'   => "admin",
-                       );
-                       $OUT .= LOAD_TEMPLATE("admin_menu_overview_row", true, $content);
-                       $SW = 3 - $SW;
-               }
+               // Remember all rows
+               $content['rows'] = $OUT;
+               $content['sub']  = $subMenu;
 
                // Free memory
                SQL_FREERESULT($result);
-               define('__MENU_ROWS', $OUT);
 
                // Load template
-               LOAD_TEMPLATE("admin_amenu_edit");
-       }
-        else
-       {
+               loadTemplate('admin_edit_admin_menu', false, $content);
+       } else {
                // Menu entries are missing... (???)
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_MENUS_FOUND);
+               displayMessage('{--ADMIN_NO_MENUS_FOUND--}');
        }
 }
-OUTPUT_HTML("</DIV>");
-CLOSE_TABLE();
+
 //
 ?>