You are here

function quicktabs_help in Quick Tabs 8.3

Same name and namespace in other branches
  1. 5 quicktabs.module \quicktabs_help()
  2. 6.3 quicktabs.module \quicktabs_help()
  3. 6 quicktabs.module \quicktabs_help()
  4. 6.2 quicktabs.module \quicktabs_help()
  5. 7.3 quicktabs.module \quicktabs_help()
  6. 7.2 quicktabs.module \quicktabs_help()

Implements hook_help().

File

./quicktabs.module, line 17
Render content with tabs and other display styles.

Code

function quicktabs_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'quicktabs.admin':
      return '<p>' . t('Each QuickTabs instance has a corresponding block that is managed on the <a href=":link">blocks administration page</a>.', [
        ':link' => Url::fromRoute('block.admin_display')
          ->setAbsolute()
          ->toString(),
      ]) . '</p>';
  }
}