summaryrefslogtreecommitdiff
path: root/modules/admin.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/admin.module')
-rw-r--r--modules/admin.module7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/admin.module b/modules/admin.module
index 6d1069947..8c9c97e01 100644
--- a/modules/admin.module
+++ b/modules/admin.module
@@ -1,6 +1,9 @@
<?php
// $Id$
+/**
+ * Implementation of hook_help().
+ */
function admin_help($section) {
switch ($section) {
case "admin/system/modules#description":
@@ -21,6 +24,10 @@ function admin_link($type) {
}
}
+/**
+ * Menu callback. Provides an overview to serve as the main page of the
+ * administration section.
+ */
function admin_admin() {
print theme("page", watchdog_overview("actions"));
}