X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-guestedit.php;h=4bfdc91a1d4fa1823faeac529cee9b8772907504;hp=bf99bcd72ab462b3b66899b00c2386fba915c748;hb=ee3a0b42f93de7676fca549c866c1c2e6f3f0576;hpb=7db85bc0c45b62c28ba49e728f489ad4bc1c115f diff --git a/inc/modules/admin/what-guestedit.php b/inc/modules/admin/what-guestedit.php index bf99bcd72a..4bfdc91a1d 100644 --- a/inc/modules/admin/what-guestedit.php +++ b/inc/modules/admin/what-guestedit.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 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 * @@ -38,17 +38,17 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!isAdmin())) { die(); -} +} // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Do we edit/delete/change main menus or sub menus? $AND = "(`what` = '' OR `what` IS NULL)"; $subMenu = ''; -if (isGetRequestParameterSet('sub')) { - $AND = sprintf("`action`='%s' AND `what` IS NOT NULL", getRequestParameter('sub')); - $subMenu = getRequestParameter('sub'); +if (isGetRequestElementSet('sub')) { + $AND = sprintf("`action`='%s' AND `what` IS NOT NULL", getRequestElement('sub')); + $subMenu = getRequestElement('sub'); } // END - if // List all menu points and make them editable @@ -58,32 +58,33 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() $content['chk'] = countPostSelection(); $count = '0'; $OUT = ''; - foreach (postRequestParameter('sel') as $sel => $confirm) { + foreach (postRequestElement('sel') as $sel => $confirm) { if ($confirm == 1) { $count++; - $result = SQL_QUERY_ESC("SELECT `title`, `action`, `what` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE ".$AND." AND `id`=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `title`,`action`,`what` FROM `{?_MYSQL_PREFIX?}_guest_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... - $DATA = SQL_FETCHARRAY($result); + $content = SQL_FETCHARRAY($result); // Prepapre content - $DATA = array( - 'cnt' => $count, + $content = array( + 'count' => $count, 'sel' => $sel, - 'action' => adminAddMenuSelectionBox('guest', 'action', 'sel_action[' . $sel . ']', $DATA['action']), - 'what' => adminAddMenuSelectionBox('guest', 'what' , 'sel_what[' . $sel . ']', $DATA['what']), - 'menu' => $DATA['title'], + 'action' => adminAddMenuSelectionBox('guest', 'action', 'sel_action[' . $sel . ']', $content['action']), + 'what' => adminAddMenuSelectionBox('guest', 'what' , 'sel_what[' . $sel . ']', $content['what']), + 'menu' => $content['title'], + 'sub' => $subMenu ); // Load row template - $OUT .= loadTemplate('admin_edit_guest_menu_row', true, $DATA); + $OUT .= loadTemplate('admin_edit_guest_menu_row', true, $content); } else { // Entry not found - $DATA = array( + $content = array( 'sel' => $sel ); - $OUT .= loadTemplate('admin_menu_404_row', true, $DATA); + $OUT .= loadTemplate('admin_menu_404_row', true, $content); } // Free result and switch color @@ -91,8 +92,10 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() } // END - if } // END - foreach - $content['rows'] = $OUT; - $content['cnt'] = $count; + $content['rows'] = $OUT; + $content['chk'] = countPostSelection(); + $content['sub'] = $subMenu; + $content['count'] = $count; // Load template loadTemplate('admin_edit_guest_menu_form', false, $content); @@ -104,73 +107,79 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() $count = '0'; $OUT = ''; - foreach (postRequestParameter('sel') as $sel => $confirm) { + foreach (postRequestElement('sel') as $sel => $confirm) { if ($confirm == 1) { $count++; $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_guest_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... - $DATA = SQL_FETCHARRAY($result); - $DATA = array( - 'cnt' => $count, - 'menu' => $DATA['title'], - 'sel' => $sel, + $content = SQL_FETCHARRAY($result); + $content = array( + 'count' => $count, + 'menu' => $content['title'], + 'sel' => $sel, ); - $OUT .= loadTemplate('admin_delete_guest_menu_row', true, $DATA); + $OUT .= loadTemplate('admin_delete_guest_menu_row', true, $content); } else { // Entry not found? - $DATA = array( + $content = array( 'sel' => $sel ); - $OUT .= loadTemplate('admin_menu_404_row', true, $DATA); + $OUT .= loadTemplate('admin_menu_404_row', true, $content); } SQL_FREERESULT($result); } // END - if } // END - foreach - $content['rows'] = $OUT; - $content['cnt'] = $count; + + $content['rows'] = $OUT; + $content['chk'] = countPostSelection(); + $content['sub'] = $subMenu; + $content['count'] = $count; // Load template loadTemplate('admin_delete_guest_menu', false, $content); -} elseif ((isPostRequestParameterSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { +} elseif ((isPostRequestElementSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Change status (visible / locked) $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); // Load template $count = '0'; $OUT = ''; - foreach (postRequestParameter('sel') as $sel => $confirm) { + foreach (postRequestElement('sel') as $sel => $confirm) { if ($confirm == 1) { $count++; - $result = SQL_QUERY_ESC("SELECT `title`, `visible`, `locked` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE ".$AND." AND `id`=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `title`,`visible`,`locked` FROM `{?_MYSQL_PREFIX?}_guest_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... - $data = SQL_FETCHARRAY($result); - $data = array( - 'cnt' => $count, - 'menu' => $data['title'], + $content = SQL_FETCHARRAY($result); + $content = array( + 'count' => $count, + 'menu' => $content['title'], 'sel' => $sel, - 'visible' => addSelectionBox('yn', $data['visible'], 'visible', $sel), - 'locked' => addSelectionBox('yn', $data['locked'] , 'locked' , $sel), + 'visible' => addSelectionBox('yn', $content['visible'], 'visible', $sel), + 'locked' => addSelectionBox('yn', $content['locked'] , 'locked' , $sel), ); // Load template - $OUT .= loadTemplate('admin_menu_status_row', true, $data); + $OUT .= loadTemplate('admin_menu_status_row', true, $content); } else { // Entry not found? - $data = array( + $content = array( 'sel' => $sel ); - $OUT .= loadTemplate('admin_menu_404_row', true, $data); + $OUT .= loadTemplate('admin_menu_404_row', true, $content); } SQL_FREERESULT($result); } // END - if } // END - foreach - $content['cnt'] = $count; - $content['rows'] = $OUT; + + $content['rows'] = $OUT; + $content['chk'] = countPostSelection(); + $content['sub'] = $subMenu; + $content['count'] = $count; // Load template loadTemplate('admin_guest_menu_status', false, $content); @@ -179,7 +188,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() adminProcessMenuEditForm('guest', $subMenu); } else { // Handle weightning - doAdminProcessMenuWeightning('guest'); + doAdminProcessMenuWeightning('guest', $AND); // By default list menus if (empty($subMenu)) { @@ -193,47 +202,44 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Do we have entries? if (!SQL_HASZERONUMS($result)) { - // Set sub value - $content['sub'] = $subMenu; - // Init variables $count = '0'; $OUT = ''; // Process all menu entries - while ($data = SQL_FETCHARRAY($result)) { + while ($content = SQL_FETCHARRAY($result)) { + // Set sub value + $content['sub'] = $subMenu; + $count++; - if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($subMenu)))) { + if (($content['sort'] == '0') || (($content['sort'] == 1) && (!empty($subMenu)))) { // Is highest position - $NAVI = '{--LOWER--}'; + $NAVI = '{--LOWER--}'; } elseif ($count == SQL_NUMROWS($result)) { // Is lowest position - $NAVI = '{--HIGHER--}'; - } elseif ($data['sort'] > 0) { + $NAVI = '{--HIGHER--}'; + } elseif ($content['sort'] > 0) { // Anything else between highest and lowest - $NAVI = '{--HIGHER--}/{--LOWER--}'; + $NAVI = '{--HIGHER--}|{--LOWER--}'; } - if (empty($data['action'])) $data['action'] = ' '; - if (empty($data['what'])) $data['what'] = ' '; - if (empty($data['title'])) $data['title'] = ' '; - // Prepapre content - $row = array( - 'id' => $data['id'], - 'action' => $data['action'], - 'what' => $data['what'], - 'title' => $data['title'], + $content = array( + 'id' => $content['id'], + 'action' => $content['action'], + 'what' => $content['what'], + 'title' => $content['title'], 'navi' => $NAVI, - 'mode' => 'guest' + 'do' => 'guest' ); // Load row template - $OUT .= loadTemplate('admin_menu_overview_row', true, $row); + $OUT .= loadTemplate('admin_menu_overview_row', true, $content); } // END - while - // Add rows + // Add rows/sub $content['rows'] = $OUT; + $content['sub'] = $subMenu; // Free memory SQL_FREERESULT($result); @@ -242,7 +248,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() loadTemplate('admin_edit_guest_menu', false, $content); } else { // Menu entries are missing... (???) - loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_MENUS_FOUND--}'); + displayMessage('{--ADMIN_NO_MENUS_FOUND--}'); } }