X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-adminedit.php;h=4d9c2e34f82b91b2eb3275b4395d8f71d715f090;hb=76740e48546bb3fdb9fca65d8d205765f2bd4d68;hp=738f9d01d078f960f279a713ff004f6259bb6fd9;hpb=f4d7dc336fde4cebc47701026a94d193f77854a1;p=mailer.git diff --git a/inc/modules/admin/what-adminedit.php b/inc/modules/admin/what-adminedit.php index 738f9d01d0..4d9c2e34f8 100644 --- a/inc/modules/admin/what-adminedit.php +++ b/inc/modules/admin/what-adminedit.php @@ -64,28 +64,28 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() 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); // Prepare data for the row template - $data = array( - 'action' => adminAddMenuSelectionBox('admin', 'action', 'sel_action[' . $sel . ']', $data['action']), - 'what' => adminAddMenuSelectionBox('admin', 'what' , 'sel_what[' . $sel . ']', $data['what']), + $content = array( + 'action' => adminAddMenuSelectionBox('admin', 'action', 'sel_action[' . $sel . ']', $content['action']), + 'what' => adminAddMenuSelectionBox('admin', 'what' , 'sel_what[' . $sel . ']', $content['what']), 'sel' => $sel, - 'menu' => $data['title'], - 'descr' => $data['descr'], - 'cnt' => $count, + 'menu' => $content['title'], + 'descr' => $content['descr'], + 'count' => $count, ); // Load row template - $OUT .= loadTemplate('admin_edit_admin_menu_row', true, $data); + $OUT .= loadTemplate('admin_edit_admin_menu_row', true, $content); } else { // Entry not found? - $data = array( + $content = array( 'sel' => $sel ); // Load row template - $OUT .= loadTemplate('admin_menu_404_row', true, $data); + $OUT .= loadTemplate('admin_menu_404_row', true, $content); } // Free result and switch color @@ -94,7 +94,7 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() } // END - foreach $content['rows'] = $OUT; - $content['cnt'] = $count; + $content['count'] = $count; // Load template loadTemplate('admin_edit_admin_menu_form', false, $content); @@ -112,27 +112,27 @@ if ((isFormSent('edit')) && (ifPostContainsSelections()) && (!isDemoModeActive() 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); // Prepare data for the row template - $data = array( - 'menu' => $data['title'], - 'cnt' => $count, - 'sel' => $sel, + $content = array( + 'menu' => $content['title'], + 'count' => $count, + 'sel' => $sel, ); - $OUT .= loadTemplate('admin_delete_admin_menu_row', true, $data); + $OUT .= loadTemplate('admin_delete_admin_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 - switch $content['rows'] = $OUT; - $content['cnt'] = $count; + $content['count'] = $count; // Load template loadTemplate('admin_delete_admin_menu', false, $content); @@ -181,9 +181,9 @@ LIMIT 1", default: // Unexpected action logDebugMessage(__FILE__, __LINE__, sprintf("Unsupported action %s detected.", postRequestParameter('ok'))); - displayMessage(getMaskedMessage('ADMIN_UNKNOWN_OKAY', postRequestParameter('ok'))); + displayMessage('{%message,ADMIN_UNKNOWN_OKAY=' . postRequestParameter('ok') . '%}'); break; - } + } // END - switch } else { // Handle weightning doAdminProcessMenuWeightning('admin', $AND); @@ -197,31 +197,32 @@ LIMIT 1", $content['sub'] = $SUB; // Init variables - $OUT = ''; $count = '0'; + $OUT = ''; + $count = '0'; // Process all entries - while ($data = SQL_FETCHARRAY($result)) { + while ($content = SQL_FETCHARRAY($result)) { // Count this entry $count++; // Init navigation variable - $data['navi'] = ''; - if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { + $content['navi'] = ''; + if (($content['sort'] == '0') || (($content['sort'] == 1) && (!empty($SUB)))) { // Is highest position - $data['navi'] = '{--LOWER--}'; + $content['navi'] = '{--LOWER--}'; } elseif ($count == SQL_NUMROWS($result)) { // Is lowest position - $data['navi'] = '{--HIGHER--}'; - } elseif ($data['sort'] > 0) { + $content['navi'] = '{--HIGHER--}'; + } elseif ($content['sort'] > 0) { // Anything else between highest and lowest - $data['navi'] = '{--HIGHER--}|{--LOWER--}'; + $content['navi'] = '{--HIGHER--}|{--LOWER--}'; } - // Add more data to $data - $data['mode'] = 'admin'; + // Add more data to $content + $content['mode'] = 'admin'; // Load row template and switch colors - $OUT .= loadTemplate('admin_menu_overview_row', true, $data); + $OUT .= loadTemplate('admin_menu_overview_row', true, $content); } // END - switch // Remember all rows