]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_mods.php
New (template) wrapper function fixEmptyContentToDashes() introduced, EL rewrites:
[mailer.git] / inc / modules / admin / what-config_mods.php
index 57c7327e0e5582beaa4b6fa6020457b9dca05b8a..f5e8f3c949931c16694c8d3786ca409e2a5ef17e 100644 (file)
@@ -45,7 +45,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
 
-if (isPostRequestParameterSet('edit')) {
+if (isFormSent('edit')) {
        // Check if at least one module is selected
        if (countPostSelection() > 0) {
                // Output header
@@ -84,13 +84,13 @@ if (isPostRequestParameterSet('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');
                unsetPostRequestParameter('change');
        }
-} elseif (isPostRequestParameterSet('change')) {
+} elseif (isFormSent('change')) {
        // Init SQLs
        initSqls();
 
@@ -120,49 +120,42 @@ if (isPostRequestParameterSet('edit')) {
        } // END - if
 
        // Entries updated
-       loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED'));
+       loadTemplate('admin_settings_saved', false, '{--ADMIN_MODS_CHANGED--}');
 }
 
 if (countPostSelection() == 0) {
        // 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__);
+       $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 = ''; $SW = 2;
        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'] = "<strong><a href=\"{%url=modules.php?module=admin&amp;what=stats_mods&amp;mod=" . $content['module'] . "%}\">" . $content['module'] . "</a></strong>";
+                       $content['module'] = '<strong><a href="{%url=modules.php?module=admin&amp;what=stats_mods&amp;mod=' . $content['module'] . '%}">' . $content['module'] . '</a></strong>';
                } // 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']),
-               );
+               $content['sw'] = $SW;
 
                // 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]
 ?>