From 2ece18cef5d661916cd7bc56d075833592c7c130 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 18 Aug 2010 18:41:30 +0000 Subject: - Patch #806232 by adam.hastings, cross: site information improvements. --- modules/system/system.module | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'modules/system/system.module') diff --git a/modules/system/system.module b/modules/system/system.module index 9be91061b..364feb0e0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -80,7 +80,7 @@ function system_help($path, $arg) { $output .= '
' . t('Managing caching') . '
'; $output .= '
' . t("The System module allows users with the appropriate permissions to manage caching on the Performance settings page. Drupal has a robust caching system that allows the efficient re-use of previously-constructed web pages and web page components. Pages requested by anonymous users are stored in a compressed format; depending on your site configuration and the amount of your web traffic tied to anonymous visitors, the caching system may significantly increase the speed of your site.", array('@cache-settings' => url('admin/config/development/performance'))) . '
'; $output .= '
' . t('Performing system maintenance') . '
'; - $output .= '
' . t('In order for the site and its modules to continue to operate well, a set of routine administrative operations must run on a regular basis. The System module manages this task by making use of a system cron job. You can verify the status of cron tasks by visiting the Status report page. For more information, see the online handbook entry for configuring cron jobs.', array('@status' => url('admin/reports/status'), '@handbook' => 'http://drupal.org/cron')) . '
'; + $output .= '
' . t('In order for the site and its modules to continue to operate well, a set of routine administrative operations must run on a regular basis. The System module manages this task by making use of a system cron job. You can verify the status of cron tasks by visiting the Status report page. For more information, see the online handbook entry for configuring cron jobs. You can set up cron job by visiting Cron configuration page', array('@status' => url('admin/reports/status'), '@handbook' => 'http://drupal.org/cron', '@cron' => url('admin/config/system/cron'))) . '
'; $output .= '
' . t('Configuring basic site settings') . '
'; $output .= '
' . t('The System module also handles basic configuration options for your site, including Date and time settings, File system settings, Clean URL support, Site name and other information, and a Maintenance mode for taking your site temporarily offline.', array('@date-time-settings' => url('admin/config/regional/date-time'), '@file-system' => url('admin/config/media/file-system'), '@clean-url' => url('admin/config/search/clean-urls'), '@site-info' => url('admin/config/system/site-information'), '@maintenance-mode' => url('admin/config/development/maintenance'))) . '
'; $output .= '
' . t('Configuring actions') . '
'; @@ -957,14 +957,22 @@ function system_menu() { ); $items['admin/config/system/site-information'] = array( 'title' => 'Site information', - 'description' => 'Change site name, e-mail address, slogan, default front page, number of posts per page, error pages and cron.', + 'description' => t('Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.'), 'page callback' => 'drupal_get_form', 'page arguments' => array('system_site_information_settings'), 'access arguments' => array('administer site configuration'), 'file' => 'system.admin.inc', 'weight' => -20, ); - + $items['admin/config/system/cron'] = array( + 'title' => t('Cron'), + 'description' => t('Manage automatic site maintenance tasks.'), + 'page callback' => 'drupal_get_form', + 'page arguments' => array('system_cron_settings'), + 'access arguments' => array('administer site configuration'), + 'file' => 'system.admin.inc', + 'weight' => 20, + ); // Additional categories $items['admin/config/user-interface'] = array( 'title' => 'User interface', -- cgit v1.2.3