You are here

function quicktabs_jqueryui_help in Quick Tabs 8.3

Implements hook_help().

File

quicktabs_jqueryui/quicktabs_jqueryui.module, line 13
Render content with tabs and other display styles.

Code

function quicktabs_jqueryui_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.quicktabs_accordion':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Makes tab rendering from jQuery UI available to the Quicktabs module.') . '</p>';
      return $output;
  }
}