From 366118ce45d1353a88a2fb29b60093ab2f258d41 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 9 Jun 2002 08:29:49 +0000 Subject: [PATCH] - Made a small cosmetic change to the modules admin page. --- modules/system.module | 5 +++-- modules/system/system.module | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/system.module b/modules/system.module index 2d284e81448e..a7913a2515e0 100644 --- a/modules/system.module +++ b/modules/system.module @@ -176,14 +176,15 @@ function system_modules() { $required = array("user", "system", "watchdog"); $output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">\n"; - $output .= "<tr><th>module</th><th>description</th><th>enabled</th><th colspan=\"2\">operations</th></tr>\n"; + $output .= "<tr><th>module</th><th>description</th><th>status</th><th colspan=\"2\">operations</th></tr>\n"; foreach ($modules as $name => $module) { $output .= "<tr>"; $output .= "<td>$name</td>"; $output .= "<td>". check_output(module_invoke($name, "system", "description")) ."</td>"; - $output .= "<td align=\"center\">". (in_array($name, $required) ? "Enabled" : form_checkbox("", "status][$name", 1, $module["status"])) ."</td>"; + $output .= "<td align=\"center\">". (in_array($name, $required) ? "required" : form_checkbox("", "status][$name", 1, $module["status"])) ."</td>"; $output .= "<td>". (module_hook($name, "page") ? lm(t("view"), array("mod" => $name)) : " ") ."</td>"; $output .= "<td>". (module_hook($name, "admin") ? la(t("admin"), array("mod" => $name)) : " ") ."</td>"; + // $output .= "<td>". (module_hook($name, "help") ? la(t("help"), array("mod" => $name, "op" => "help")) : " ") ."</td>"; $output .= "</tr>\n"; if (!in_array($name, $required)) { db_query("INSERT INTO system SET name = '$name', type = 'module', filename = '$module[filename]', status = '$module[status]'"); diff --git a/modules/system/system.module b/modules/system/system.module index 2d284e81448e..a7913a2515e0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -176,14 +176,15 @@ function system_modules() { $required = array("user", "system", "watchdog"); $output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">\n"; - $output .= "<tr><th>module</th><th>description</th><th>enabled</th><th colspan=\"2\">operations</th></tr>\n"; + $output .= "<tr><th>module</th><th>description</th><th>status</th><th colspan=\"2\">operations</th></tr>\n"; foreach ($modules as $name => $module) { $output .= "<tr>"; $output .= "<td>$name</td>"; $output .= "<td>". check_output(module_invoke($name, "system", "description")) ."</td>"; - $output .= "<td align=\"center\">". (in_array($name, $required) ? "Enabled" : form_checkbox("", "status][$name", 1, $module["status"])) ."</td>"; + $output .= "<td align=\"center\">". (in_array($name, $required) ? "required" : form_checkbox("", "status][$name", 1, $module["status"])) ."</td>"; $output .= "<td>". (module_hook($name, "page") ? lm(t("view"), array("mod" => $name)) : " ") ."</td>"; $output .= "<td>". (module_hook($name, "admin") ? la(t("admin"), array("mod" => $name)) : " ") ."</td>"; + // $output .= "<td>". (module_hook($name, "help") ? la(t("help"), array("mod" => $name, "op" => "help")) : " ") ."</td>"; $output .= "</tr>\n"; if (!in_array($name, $required)) { db_query("INSERT INTO system SET name = '$name', type = 'module', filename = '$module[filename]', status = '$module[status]'"); -- GitLab