function bootstrap_quicktabs_theme in Bootstrap Quick Tabs 7
Same name and namespace in other branches
- 8 bootstrap_quicktabs.module \bootstrap_quicktabs_theme()
Implements hook_theme().
File
- ./
bootstrap_quicktabs.module, line 37 - Provides Bootstrap's tab styles to the Quicktabs module. Adapted from the re_quicktabs_foundation module.
Code
function bootstrap_quicktabs_theme() {
return array(
'bootstrap_tabs' => array(
'render element' => 'element',
),
'bootstrap_tabs_tabset' => array(
'render element' => 'tabset',
),
'bootstrap_accordion' => array(
'render element' => 'element',
),
);
}