dblog_help($route_name, RouteMatchInterface $route_match)
Implements hook_help().
File
- core/modules/dblog/dblog.module, line 19
- System monitoring and logging for administrators.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function dblog_help( $route_name , RouteMatchInterface $route_match ) { switch ( $route_name ) { case 'help.page.dblog' : $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 <a href=":dblog">online documentation for the Database Logging module</a>.' , array ( ':dblog' => 'https://www.drupal.org/documentation/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 messages</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' => \Drupal::url( 'dblog.overview' ))) . '</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 messages</a> page can be useful for debugging, since it shows the sequence of events. The log messages include usage information, warnings, and errors.' , array ( ':dblog' => \Drupal::url( 'dblog.overview' ))) . '</dd>' ; $output .= '</dl>' ; return $output ; case 'dblog.overview' : return '<p>' . t( 'The Database Logging module logs system events in the Drupal database. Monitor your site or debug site problems on this page.' ) . '</p>' ; } } |
Please login to continue.