You are here

function bootstrap_quicktabs_help in Bootstrap Quick Tabs 8

Implements hook_help().

File

./bootstrap_quicktabs.module, line 13
Contains bootstrap_quicktabs.module.

Code

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

    // Main module help for the bootstrap_quicktabs module.
    case 'help.page.bootstrap_quicktabs':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Makes tabs from Bootstrap framework available to the Quicktabs module.') . '</p>';
      return $output;
    default:
  }
}