You are here

function site_audit_help in Site Audit 8.3

Implements hook_help().

File

./site_audit.module, line 13
Contains hooks and functions for the site_audit.module.

Code

function site_audit_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the site_audit module.
    case 'help.page.site_audit':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Site Audit is a Drupal site analysis platform that generates reports with actionable best practice recommendations.') . '</p>';
      return $output;
    default:
  }
}