function quicktabs_theme in Quick Tabs 7.3
Same name and namespace in other branches
- 8.3 quicktabs.module \quicktabs_theme()
- 6.3 quicktabs.module \quicktabs_theme()
- 6 quicktabs.module \quicktabs_theme()
- 6.2 quicktabs.module \quicktabs_theme()
- 7.2 quicktabs.module \quicktabs_theme()
Implements hook_theme().
File
- ./
quicktabs.module, line 104
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',
),
),
);
}