You are here

function expand_collapse_formatter_help in Expand collapse formatter 8

Implements hook_help().

File

./expand_collapse_formatter.module, line 13
Contains expand_collapse_formatter.module..

Code

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

    // Main module help for the expand_toggle_formatter module.
    case 'help.page.expand_collapse_formatter':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A formatter to expand and collapse text area fields.') . '</p>';
      return $output;
    default:
  }
}