X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-guestedit.php;h=eded88276c2f4d56a33b7d5cf4d4ce7d4e64301e;hp=f027f7f0f5f5697c41a8d919bce73d6927da0337;hb=db0c6702086eea2c44d0aae1702dc2e77a0afc4e;hpb=903f539b5aac6171fdfee9ad252565531e8dd4e2 diff --git a/inc/modules/admin/what-guestedit.php b/inc/modules/admin/what-guestedit.php index f027f7f0f5..eded88276c 100644 --- a/inc/modules/admin/what-guestedit.php +++ b/inc/modules/admin/what-guestedit.php @@ -14,11 +14,9 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,26 +41,26 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // 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)"; $SUB = ''; +$AND = "(`what` = '' OR `what` IS NULL)"; $subMenu = ''; if (isGetRequestParameterSet('sub')) { $AND = sprintf("`action`='%s' AND `what` IS NOT NULL", getRequestParameter('sub')); - $SUB = getRequestParameter('sub'); + $subMenu = getRequestParameter('sub'); } // END - if // List all menu points and make them editable if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Edit menu entries - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); - $cnt = '0'; $OUT = ''; + $count = '0'; $OUT = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { if ($confirm == 1) { - $cnt++; + $count++; $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) { @@ -71,7 +69,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Prepapre content $DATA = array( - 'cnt' => $cnt, + 'cnt' => $count, 'sel' => $sel, 'action' => adminAddMenuSelectionBox('guest', 'action', 'sel_action[' . $sel . ']', $DATA['action']), 'what' => adminAddMenuSelectionBox('guest', 'what' , 'sel_what[' . $sel . ']', $DATA['what']), @@ -94,28 +92,28 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() } // END - foreach $content['rows'] = $OUT; - $content['cnt'] = $cnt; + $content['cnt'] = $count; // Load template loadTemplate('admin_edit_guest_menu_form', false, $content); } elseif ((isFormSent('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Del menu entries with or without confirmation - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); - $cnt = '0'; + $count = '0'; $OUT = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { if ($confirm == 1) { - $cnt++; + $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' => $cnt, + 'cnt' => $count, 'menu' => $DATA['title'], 'sel' => $sel, ); @@ -131,68 +129,27 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() } // END - if } // END - foreach $content['rows'] = $OUT; - $content['cnt'] = $cnt; + $content['cnt'] = $count; // Load template loadTemplate('admin_delete_guest_menu', false, $content); -} elseif ((isFormSent()) && (!isDemoModeActive())) { - // An action is done... - switch (postRequestParameter('ok')) { - case 'edit': // Edit menu - foreach (postRequestParameter('sel') as $sel => $menu) { - // Secure selector - $sel = bigintval($sel); - - // Update entry - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `title`='%s', `action`='%s', `what`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", - array($menu, postRequestParameter('sel_action', $sel), postRequestParameter('sel_what', $sel), $sel),__FILE__, __LINE__); - } // END - foreach - loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}'); - break; - - case 'delete': // Delete menu - foreach (postRequestParameter('sel') as $sel => $menu) { - // Delete enty - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE ".$AND." AND `id`=%s LIMIT 1", - array(bigintval($sel)), __FILE__, __LINE__); - } // END - foreach - loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}'); - break; - - case 'status': // Change access levels - foreach (postRequestParameter('sel') as $sel => $menu) { - // Secure selector - $sel = bigintval($sel); - - // Update entry - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='%s', `locked`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", - array(postRequestParameter('visible', $sel), postRequestParameter('locked', $sel), $sel), __FILE__, __LINE__); - } // END - foreach - loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}'); - break; - - default: // Unexpected action - logDebugMessage(__FILE__, __LINE__, sprintf("Unsupported action %s detected.", postRequestParameter('ok'))); - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_OKAY', postRequestParameter('ok'))); - break; - } // END - switch } elseif ((isPostRequestParameterSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Change status (visible / locked) - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); // Load template - $cnt = '0'; $OUT = ''; + $count = '0'; $OUT = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { if ($confirm == 1) { - $cnt++; + $count++; $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' => $cnt, + 'cnt' => $count, 'menu' => $data['title'], 'sel' => $sel, 'visible' => addSelectionBox('yn', $data['visible'], 'visible', $sel), @@ -212,71 +169,44 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() SQL_FREERESULT($result); } // END - if } // END - foreach - $content['cnt'] = $cnt; + $content['cnt'] = $count; $content['rows'] = $OUT; // Load template loadTemplate('admin_guest_menu_status', false, $content); +} elseif ((isFormSent()) && (!isDemoModeActive())) { + // An action is done... + adminProcessMenuEditForm('guest', $subMenu); } else { - if ((isGetRequestParameterSet('act')) && (isGetRequestParameterSet('tid')) && (isGetRequestParameterSet('fid'))) { - // Get ids - if (isGetRequestParameterSet('w')) { - // Sub menus selected - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1", - array(getRequestParameter('act'), bigintval(getRequestParameter('tid'))), __FILE__, __LINE__); - list($tid) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1", - array(getRequestParameter('act'), bigintval(getRequestParameter('fid'))), __FILE__, __LINE__); - list($fid) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - } else { - // Main menu selected - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1", - array(bigintval(getRequestParameter('tid'))), __FILE__, __LINE__); - list($tid) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1", - array(bigintval(getRequestParameter('fid'))), __FILE__, __LINE__); - list($fid) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - } - - if ((!empty($tid)) && (!empty($fid))) { - // Sort menu - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `sort`=%s WHERE ".$AND." AND `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('tid')), bigintval($fid)), __FILE__, __LINE__); - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `sort`=%s WHERE ".$AND." AND `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('fid')), bigintval($tid)), __FILE__, __LINE__); - } // END - if - } // END - if + // Handle weightning + doAdminProcessMenuWeightning('guest'); // By default list menus - if (empty($SUB)) { + if (empty($subMenu)) { // List only main menus $result = SQL_QUERY("SELECT `id`,`action`,`what`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", __FILE__, __LINE__); } else { // List sub menus $result = SQL_QUERY_ESC("SELECT `id`,`action`,`what`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort` ASC", - array($SUB), __FILE__, __LINE__); + array($subMenu), __FILE__, __LINE__); } // Do we have entries? - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // Set sub value - $content['sub'] = $SUB; + $content['sub'] = $subMenu; // Init variables - $cnt = '0'; + $count = '0'; $OUT = ''; // Process all menu entries while ($data = SQL_FETCHARRAY($result)) { - $cnt++; - if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { + $count++; + if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($subMenu)))) { // Is highest position $NAVI = '{--LOWER--}'; - } elseif ($cnt == SQL_NUMROWS($result)) { + } elseif ($count == SQL_NUMROWS($result)) { // Is lowest position $NAVI = '{--HIGHER--}'; } elseif ($data['sort'] > 0) { @@ -312,7 +242,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--}'); } }