]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_mods.php
More rewrites/templates swapped out:
[mailer.git] / inc / modules / admin / what-config_mods.php
index a24778f086571447660db9df84192b4f79290621..dee6e47d26f7ad2e2efc5993a7f576e325d99972 100644 (file)
@@ -125,44 +125,38 @@ if (isFormSent('edit')) {
 
 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]
 ?>