diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 18:11:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-06 18:11:41 +0000 |
commit | 7d4f8c7ac6f596324dd8f35791df33aa3d9c532b (patch) | |
tree | e30383eb0288925def1cc11f6ea53aea25cb7dbe /modules/dblog | |
parent | 89ac9876d08935ab9e644dac2e051925197e4e43 (diff) | |
download | brdo-7d4f8c7ac6f596324dd8f35791df33aa3d9c532b.tar.gz brdo-7d4f8c7ac6f596324dd8f35791df33aa3d9c532b.tar.bz2 |
#635282 by jhodgdon and arianek: Update RDF, DBlog, and PHP module to new help standard.
Diffstat (limited to 'modules/dblog')
-rw-r--r-- | modules/dblog/dblog.module | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module index cda8211ae..1d2dc015f 100644 --- a/modules/dblog/dblog.module +++ b/modules/dblog/dblog.module @@ -18,12 +18,19 @@ function dblog_help($path, $arg) { switch ($path) { case 'admin/help#dblog': - $output = '<p>' . t('The dblog module monitors your system, capturing system events in a log to be reviewed by an authorized individual at a later time. This is useful for site administrators who want a quick overview of activities on their site. The logs also record the sequence of events, so it can be useful for debugging site errors.') . '</p>'; - $output .= '<p>' . t('The dblog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the dblog report on a regular basis to ensure their site is working properly.') . '</p>'; - $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@dblog">Dblog module</a>.', array('@dblog' => 'http://drupal.org/handbook/modules/dblog/')) . '</p>'; - return $output; + $output = ''; + $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<p>' . t('The Database logging module logs system events in the Drupal database. For more information, see the online handbook entry for the <a href="@dblog">Database logging module</a>.', array('@dblog' => 'http://drupal.org/handbook/modules/dblog')) . '</p>'; + $output .= '<h3>' . t('Uses') . '</h3>'; + $output .= '<dl>'; + $output .= '<dt>' . t('Monitoring your site') . '</dt>'; + $output .= '<dd>' . t('The Database logging module allows you to view an event log on the <a href="@dblog">Recent log entries</a> page. The log is a chronological list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the log on a regular basis to ensure their site is working properly.', array('@dblog' => url('admin/reports/dblog'))) . '</dd>'; + $output .= '<dt>' . t('Debugging site problems') . '</dt>'; + $output .= '<dd>' . t('In case of errors or problems with the site, the <a href="@dblog">Recent log entries</a> page can be useful for debugging, since it shows the sequence of events. The log entries include usage information, warnings, and errors.', array('@dblog' => url('admin/reports/dblog'))) . '</dd>'; + $output .= '</dl>'; + return $output; case 'admin/reports/dblog': - return '<p>' . t('The dblog module monitors your website, capturing system events in a log to be reviewed by an authorized individual at a later time. The dblog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the dblog report on a regular basis as it is often the only way to tell what is going on.') . '</p>'; + return '<p>' . t('The Database logging module monitors your website, capturing system events in a log (shown here) to be reviewed by an authorized individual at a later time. This log is a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the Recent log entries report on a regular basis, as it is often the only way to tell what is going on.') . '</p>'; } } |