X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-memedit.php;h=6e3405dc16387b85cdf88ec3adb9c609ab3b58de;hb=0544b579eb35a23bf1844a632fa7afd699d3205d;hp=a778d5be46b03bc83dbbe15173f81b09fdea6fd9;hpb=489aebca1753a3cefdbd331e83888b76e56dbb11;p=mailer.git diff --git a/inc/modules/admin/what-memedit.php b/inc/modules/admin/what-memedit.php index a778d5be46..6e3405dc16 100644 --- a/inc/modules/admin/what-memedit.php +++ b/inc/modules/admin/what-memedit.php @@ -44,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 = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { @@ -69,8 +69,8 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() 'cnt' => $cnt, 'sel' => $sel, 'menu' => $data['title'], - 'act' => adminAddMenuSelectionBox('member', 'act' , 'sel_act[' . $sel . ']', $data['action']), - 'what' => adminAddMenuSelectionBox('member', 'what', 'sel_what[' . $sel . ']', $data['what']), + 'action' => adminAddMenuSelectionBox('member', 'action', 'sel_action[' . $sel . ']', $data['action']), + 'what' => adminAddMenuSelectionBox('member', 'what' , 'sel_what[' . $sel . ']', $data['what']), ); // Load template @@ -96,7 +96,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() loadTemplate('admin_edit_member_menu', 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'; $OUT = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { @@ -134,7 +134,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() loadTemplate('admin_delete_member_menu', false, $content); } elseif ((isPostRequestParameterSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Change status (visible / locked) - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $content['chk'] = countPostSelection(); $cnt = '0'; $OUT = ''; foreach (postRequestParameter('sel') as $sel => $confirm) { @@ -173,75 +173,13 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Load template loadTemplate('admin_member_menu_status', false, $content); } elseif ((isFormSent()) && (!isDemoModeActive())) { - // An act is done... - foreach (postRequestParameter('sel') as $sel => $menu) { - $AND = "(`what` = '' OR `what` IS NULL)"; - - $sel = bigintval($sel); - - if (!empty($SUB)) $AND = "`action`='" . $SUB . "'"; - - switch (postRequestParameter('ok')) { - case 'edit': // Edit menu - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `title`='%s', `action`='%s', `what`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", - array($menu, postRequestParameter('sel_act', $sel), postRequestParameter('sel_what', $sel), $sel), __FILE__, __LINE__); - break; - - case 'delete': // Delete menu - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE ".$AND." AND `id`=%s LIMIT 1", - array($sel), __FILE__, __LINE__); - break; - - case 'status': // Change status of menus - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='%s', `locked`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", - array(postRequestParameter('visible', $sel), postRequestParameter('locked', $sel), $sel), __FILE__, __LINE__); - 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 - } // END - foreach - - // Load template - loadTemplate('admin_settings_saved', false, '{--SETTINGS_SAVED--}'); + // Process menu editing form + adminProcessMenuEditForm('member', $subMenu); } else { - if ((isGetRequestParameterSet('act')) && (isGetRequestParameterSet('tid')) && (isGetRequestParameterSet('fid'))) { - // Init - $tid = ''; $fid = ''; - - // Get ids - if (isGetRequestParameterSet('w')) { - // Sub menus selected - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1", - array(bigintval(getRequestParameter('act')), bigintval(getRequestParameter('tid'))), __FILE__, __LINE__); - list($tid) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `action`='%s' AND `sort`=%s LIMIT 1", - array(bigintval(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?}_member_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1", - array(bigintval(getRequestParameter('tid'))), __FILE__, __LINE__); - list($tid) = SQL_FETCHROW($result); - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE (`what`='' OR `what` IS NULL) AND `sort`=%s LIMIT 1", - array(bigintval(getRequestParameter('fid'))), __FILE__, __LINE__); - list($fid) = SQL_FETCHROW($result); - } - - if ((!empty($tid)) && (!empty($fid))) { - // Sort menu - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_member_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?}_member_menu` SET `sort`=%s WHERE ".$AND." AND `id`=%s LIMIT 1", - array(bigintval(getRequestParameter('fid')), bigintval($tid)), __FILE__, __LINE__); - } // END - -fi - } // END - if + // Handle weightning + doAdminProcessMenuWeightning('guest'); - if (!empty($SUB)) { + if (!empty($subMenu)) { // Edit sub menus $result = SQL_QUERY("SELECT `id`, `action`, `what`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE ".$AND." AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort` ASC", __FILE__, __LINE__); } else { @@ -252,14 +190,14 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() // Some are there? if (SQL_NUMROWS($result) > 0) { // Set sub value - $content['sub'] = $SUB; + $content['sub'] = $subMenu; $cnt = '0'; $OUT = ''; while ($data = SQL_FETCHARRAY($result)) { // Init navigation $data['navi'] = ''; $cnt++; - if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { + if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($subMenu)))) { // Is highest position $data['navi'] = '{--LOWER--}'; } elseif ($cnt == SQL_NUMROWS($result)) {