You are here

function html_formatter_help in HTML Formatter 8

Implements hook_help().

File

./html_formatter.module, line 13
Contains html_formatter.module..

Code

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

    // Main module help for the html_formatter module.
    case 'help.page.html_formatter':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Adds HTML Formatter to textfields') . '</p>';
      return $output;
    default:
  }
}