You are here

function trumba_help in Trumba 2.x

Same name and namespace in other branches
  1. 8 trumba.module \trumba_help()

Implements hook_help().

File

./trumba.module, line 14
Contains trumba.module..

Code

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

    // Main module help for the trumba module.
    case 'help.page.trumba':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides a way to place trumba calendar elements (spuds) on a page.') . '</p>';
      return $output;
    default:
  }
}