You are here

quicktabs_jqueryui.module in Quick Tabs 8.3

Render content with tabs and other display styles.

File

quicktabs_jqueryui/quicktabs_jqueryui.module
View source
<?php

/**
 * @file
 * Render content with tabs and other display styles.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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;
  }
}

Functions

Namesort descending Description
quicktabs_jqueryui_help Implements hook_help().