You are here

function bootstrap_quicktabs_theme in Bootstrap Quick Tabs 8

Same name and namespace in other branches
  1. 7 bootstrap_quicktabs.module \bootstrap_quicktabs_theme()

Implements hook_theme().

File

./bootstrap_quicktabs.module, line 29
Contains bootstrap_quicktabs.module.

Code

function bootstrap_quicktabs_theme() {
  return [
    'bootstrap_tabs' => [
      'variables' => [
        'content' => NULL,
        'tabs' => NULL,
        'options' => NULL,
      ],
      'template' => 'bootstrap-tabs',
    ],
    'bootstrap_tabs_tabs' => [
      'template' => 'bootstrap-tabs-tabs',
    ],
    'bootstrap_accordion' => [
      'variables' => [
        'classes' => NULL,
        'id' => NULL,
        'panels' => NULL,
      ],
      'template' => 'bootstrap-accordion',
    ],
  ];
}