You are here

function disclaimer_help in Disclaimer 8

Implements hook_help().

File

./disclaimer.module, line 13
Contains disclaimer.module.

Code

function disclaimer_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.disclaimer':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Watches over users visiting sections of the site and displays disclaimer when section is entered.') . '</p>';
      return $output;
  }
}