$confirm) { if ($confirm == 1) { $count++; $result = SQL_QUERY_ESC("SELECT `title`,`action`,`what` FROM `{?_MYSQL_PREFIX?}_member_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... $content = SQL_FETCHARRAY($result); $content = array( 'count' => $count, 'sel' => $sel, 'menu' => $content['title'], 'action' => adminAddMenuSelectionBox('member', 'action', 'sel_action[' . $sel . ']', $content['action']), 'what' => adminAddMenuSelectionBox('member', 'what' , 'sel_what[' . $sel . ']', $content['what']), ); // Load template $OUT .= loadTemplate('admin_edit_member_menu_row', true, $content); } else { // Entry not found? $content = array( 'sel' => $sel ); // Load template $OUT .= loadTemplate('admin_menu_404_row', true, $content); } SQL_FREERESULT($result); } // END - if } // END - foreach // Add row content and current counter $content['rows'] = $OUT; $content['chk'] = countPostSelection(); $content['sub'] = $subMenu; $content['count'] = $count; // Load template loadTemplate('admin_edit_member_menu', false, $content); } elseif ((isFormSent('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Del menu entries with or without confirmation $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` FROM `{?_MYSQL_PREFIX?}_member_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($title) = SQL_FETCHROW($result); $content = array( 'count' => $count, 'sel' => $sel, 'title' => $title ); // Load template $OUT .= loadTemplate('admin_delete_member_menu_row', true, $content); } else { // Entry not found? $content = array( 'sel' => $sel ); // Load template $OUT .= loadTemplate('admin_menu_404_row', true, $content); } SQL_FREERESULT($result); } // END - if } // END - foreach $content['rows'] = $OUT; $content['chk'] = countPostSelection(); $content['sub'] = $subMenu; $content['count'] = $count; // Load template loadTemplate('admin_delete_member_menu', false, $content); } elseif ((isPostRequestElementSet('status')) && (ifPostContainsSelections()) && (!isDemoModeActive())) { // Change status (visible / locked) $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`,`visible`,`locked` FROM `{?_MYSQL_PREFIX?}_member_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... $content = SQL_FETCHARRAY($result); $content = array( 'count' => $count, 'menu' => $content['title'], 'sel' => $sel, 'visible' => addSelectionBox('yn', $content['visible'], 'visible', $sel), 'locked' => addSelectionBox('yn', $content['locked'] , 'locked' , $sel), ); // Load template $OUT .= loadTemplate('admin_menu_status_row', true, $content); } else { // Entry not found? $content = array( 'sel' => $sel ); // Load template $OUT .= loadTemplate('admin_menu_404_row', true, $content); } SQL_FREERESULT($result); } // END - if } // END - foreach $content['rows'] = $OUT; $content['chk'] = countPostSelection(); $content['sub'] = $subMenu; $content['count'] = $count; // Load template loadTemplate('admin_member_menu_status', false, $content); } elseif ((isFormSent()) && (!isDemoModeActive())) { // Process menu editing form adminProcessMenuEditForm('member', $subMenu); } else { // Handle weightning doAdminProcessMenuWeightning('member', $AND); 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 { // Edit main menus $result = SQL_QUERY("SELECT `id`,`action`,`what`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", __FILE__, __LINE__); } // Some are there? if (!SQL_HASZERONUMS($result)) { $count = '0'; $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Set sub value $content['sub'] = $subMenu; // Init navigation $content['navi'] = ''; $count++; if (($content['sort'] == '0') || (($content['sort'] == 1) && (!empty($subMenu)))) { // Is highest position $content['navi'] = '{--LOWER--}'; } elseif ($count == SQL_NUMROWS($result)) { // Is lowest position $content['navi'] = '{--HIGHER--}'; } elseif ($content['sort'] > 0) { // Anything else between highest and lowest $content['navi'] = '{--HIGHER--}|{--LOWER--}'; } // Add more entries $content['do'] = 'mem'; // Load row template and switch color $OUT .= loadTemplate('admin_menu_overview_row', true, $content); } // END - while // Free memory SQL_FREERESULT($result); // Remember rows/sub in array $content['rows'] = $OUT; $content['sub'] = $subMenu; // Load main template loadTemplate('admin_member_menu_overview', false, $content); } else { // Menu entries are missing... (???) displayMessage('{--ADMIN_NO_MENUS_FOUND--}'); } } // [EOF] ?>