summaryrefslogtreecommitdiff
path: root/modules/admin.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/admin.module')
-rw-r--r--modules/admin.module42
1 files changed, 0 insertions, 42 deletions
diff --git a/modules/admin.module b/modules/admin.module
deleted file mode 100644
index 53804388d..000000000
--- a/modules/admin.module
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-// $Id$
-
-/**
- * @file
- * Handles the administration pages.
- */
-
-/**
- * Implementation of hook_help().
- */
-function admin_help($section) {
- switch ($section) {
- case 'admin/modules#description':
- return t('Handles the administration pages.');
- case 'admin':
- return t('<p>Welcome to the administration section. Below are the most recent system events.</p>');
- }
-}
-
-/**
- * Implementation of hook_menu().
- */
-function admin_menu($may_cache) {
- $items = array();
- if ($may_cache) {
- $items[] = array('path' => 'admin', 'title' => t('administer'),
- 'access' => user_access('access administration pages'),
- 'callback' => 'admin_main_page',
- 'weight' => 9);
- }
- return $items;
-}
-
-/**
- * Menu callback; provides the main page of the administration section.
- */
-function admin_main_page() {
- watchdog_overview('actions');
-}
-
-?>