X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=809f4be165eadc650ede036fbc2f8d5dac3c1cec;hb=4b9887f734067dc52a1730468e25ba066036a3e1;hp=a24778f086571447660db9df84192b4f79290621;hpb=18e32f1a8971b18bace4f051094acf27800bd7d9;p=mailer.git diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index a24778f086..809f4be165 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -47,9 +47,9 @@ addMenuDescription('admin', __FILE__); if (isFormSent('edit')) { // Check if at least one module is selected - if (countPostSelection() > 0) { + if (ifPostContainsSelections()) { // Output header - $OUT = ''; $SW = 2; + $OUT = ''; // Edit selected modules foreach (postRequestParameter('sel') as $id => $sel) { @@ -66,7 +66,6 @@ if (isFormSent('edit')) { // Prepare array for the template $content = array( - 'sw' => $SW, 'mod' => $data['module'], 'id' => $id, 'title' => $data['title'], @@ -84,7 +83,7 @@ if (isFormSent('edit')) { loadTemplate('admin_mods_edit', false, $OUT); } else { // Nothing selected - loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_NOTHING_SELECTED--}'); // Remove maybe confusing data unsetPostRequestParameter('edit'); @@ -120,49 +119,36 @@ if (isFormSent('edit')) { } // END - if // Entries updated - loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_CHANGED--}'); } -if (countPostSelection() == 0) { +if (!ifPostContainsSelections()) { // Load module data (We do not need to check if there's at least one...) - $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only -FROM `{?_MYSQL_PREFIX?}_mod_reg` -ORDER BY module', __FILE__, __LINE__); - $OUT = ''; $SW = 2; + $result = SQL_QUERY('SELECT + `id`, `module`, `locked`, `hidden`, `admin_only`, `title`, `mem_only` +FROM + `{?_MYSQL_PREFIX?}_mod_reg` +ORDER BY + `module` ASC', __FILE__, __LINE__); + + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Reset title to --- if it is NULL - if (empty($content['title'])) $content['title'] = '---'; if (($content['module'] == 'index') || ($content['module'] == 'login')) { // Add link to detail statistics - $content['module'] = "" . $content['module'] . ""; + $content['module'] = '' . $content['module'] . ''; } // END - if - // Prepare array for the template - // @TODO Rewritings: mod->module in template - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'mod' => $content['module'], - 'title' => $content['title'], - 'locked' => translateYesNo($content['locked']), - 'hidden' => translateYesNo($content['hidden']), - 'admin' => translateYesNo($content['admin_only']), - 'mem' => translateYesNo($content['mem_only']), - ); - // Load row template $OUT .= loadTemplate('admin_list_mods_row', true, $content); - - // Switch colors - $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_list_mods', false, $OUT); -} +} // END - if // [EOF] ?>