Same name and namespace in other branches
  1. 8.x-3.x quicktabs_jqueryui/quicktabs_jqueryui.module \quicktabs_jqueryui_help() 1 comment

Implements hook_help().

File

quicktabs_jqueryui/quicktabs_jqueryui.module, line 13

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;
    }
}