Same name in other branches
- 4.x quicktabs.module \quicktabs_theme()
- 7.x-2.x quicktabs.module \quicktabs_theme()
- 7.x-3.x quicktabs.module \quicktabs_theme()
- 8.x-3.x quicktabs.module \quicktabs_theme()
Implements hook_theme().
File
-
./
quicktabs.module, line 31
Code
function quicktabs_theme() {
return array(
'quicktabs_admin_form_tabs' => array(
'render element' => 'tabs',
'file' => 'quicktabs.admin.inc',
),
'qt_ui_tabs' => array(
'render element' => 'element',
),
'qt_ui_tabs_tabset' => array(
'render element' => 'tabset',
),
'qt_quicktabs' => array(
'render element' => 'element',
),
'qt_quicktabs_tabset' => array(
'render element' => 'tabset',
),
'qt_accordion' => array(
'render element' => 'element',
),
'quicktabs_tab_access_denied' => array(
'variables' => array(
'tab',
),
),
);
}