X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-guestedit.php;h=2a9d15f2773e51d475a77ba120c33113312a8c09;hb=24a98fb5ba785b3f6b8cb6f8e9acc0f19c37ab5d;hp=722b9eea4efef82d519769095d0fda82d0ccfaec;hpb=c9510cf2a41f21f369e49f93ce9268d8bf1ace6b;p=mailer.git diff --git a/inc/modules/admin/what-guestedit.php b/inc/modules/admin/what-guestedit.php index 722b9eea4e..2a9d15f277 100644 --- a/inc/modules/admin/what-guestedit.php +++ b/inc/modules/admin/what-guestedit.php @@ -14,8 +14,6 @@ * $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 * @@ -46,17 +44,17 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addMenuDescription('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 = ''; @@ -98,9 +96,9 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Load template loadTemplate('admin_edit_guest_menu_form', false, $content); -} elseif ((isFormSent('del')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { +} elseif ((isFormSent('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Del menu entries with or without confirmation - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); $cnt = '0'; @@ -119,7 +117,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() 'menu' => $DATA['title'], 'sel' => $sel, ); - $OUT .= loadTemplate('admin_del_guest_menu_row', true, $DATA); + $OUT .= loadTemplate('admin_delete_guest_menu_row', true, $DATA); } else { // Entry not found? $DATA = array( @@ -134,51 +132,10 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() $content['cnt'] = $cnt; // Load template - loadTemplate('admin_del_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 'del': // 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 + loadTemplate('admin_delete_guest_menu', false, $content); } elseif ((isPostRequestParameterSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Change status (visible / locked) - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); // Load template @@ -217,54 +174,27 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // 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) { // Set sub value - $content['sub'] = $SUB; + $content['sub'] = $subMenu; // Init variables $cnt = '0'; @@ -273,7 +203,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Process all menu entries while ($data = SQL_FETCHARRAY($result)) { $cnt++; - if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { + if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($subMenu)))) { // Is highest position $NAVI = '{--LOWER--}'; } elseif ($cnt == SQL_NUMROWS($result)) {