summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-20 21:57:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-20 21:57:50 +0000
commit7c31bcdeac94c254130845c3959753b68c36ea1e (patch)
tree334f1a2abbd9de134fba66bcb435b3b2e6c57a1b /modules/system/system.module
parent6dcfce0127bc7ea3f4bb843ddcaf44becd98d9fa (diff)
downloadbrdo-7c31bcdeac94c254130845c3959753b68c36ea1e.tar.gz
brdo-7c31bcdeac94c254130845c3959753b68c36ea1e.tar.bz2
#165140 by dww: rename logs to reports (usability improvement)
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index eb99f4e7e..0d68f55d8 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -66,7 +66,7 @@ function system_help($path, $arg) {
return $output;
case 'admin/settings/actions/configure':
return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended, in order to better identify the precise action taking place. This description will be displayed in modules such as the trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, "Send e-mail to Moderation Team" rather than simply "Send e-mail").');
- case 'admin/logs/status':
+ case 'admin/reports/status':
return '<p>'. t("Here you can find a short overview of your Drupal site's parameters as well as any problems detected with your installation. It is useful to copy/paste this information when you need support.") .'</p>';
}
}
@@ -402,16 +402,16 @@ function system_menu() {
'file' => 'system.admin.inc',
);
- // Logs:
- $items['admin/logs'] = array(
- 'title' => 'Logs',
- 'description' => 'View system logs and other status information.',
+ // Reports:
+ $items['admin/reports'] = array(
+ 'title' => 'Reports',
+ 'description' => 'View reports from system logs and other status information.',
'page callback' => 'system_admin_menu_block_page',
'weight' => 5,
'position' => 'left',
'file' => 'system.admin.inc',
);
- $items['admin/logs/status'] = array(
+ $items['admin/reports/status'] = array(
'title' => 'Status report',
'description' => "Get a status report about your site's operation and any detected problems.",
'page callback' => 'system_status',
@@ -419,19 +419,19 @@ function system_menu() {
'access arguments' => array('administer site configuration'),
'file' => 'system.admin.inc',
);
- $items['admin/logs/status/run-cron'] = array(
+ $items['admin/reports/status/run-cron'] = array(
'title' => 'Run cron',
'page callback' => 'system_run_cron',
'type' => MENU_CALLBACK,
'file' => 'system.admin.inc',
);
- $items['admin/logs/status/php'] = array(
+ $items['admin/reports/status/php'] = array(
'title' => 'PHP',
'page callback' => 'system_php',
'type' => MENU_CALLBACK,
'file' => 'system.admin.inc',
);
- $items['admin/logs/status/sql'] = array(
+ $items['admin/reports/status/sql'] = array(
'title' => 'SQL',
'page callback' => 'system_sql',
'type' => MENU_CALLBACK,