Same name and namespace in other branches
  1. 4.x quicktabs.module \quicktabs_theme() 1 comment
  2. 7.x-3.x quicktabs.module \quicktabs_theme() 1 comment
  3. 8.x-1.x quicktabs.module \quicktabs_theme() 1 comment
  4. 8.x-3.x quicktabs.module \quicktabs_theme() 1 comment

Implements hook_theme().

File

./quicktabs.module, line 22

Code

function quicktabs_theme() {
    return array(
        'quicktabs_admin_form_tabs' => array(
            'render element' => 'tabs',
            'file' => 'includes/admin.inc',
        ),
        'quicktabs_tabs' => array(
            'render element' => 'tabset',
        ),
        'quicktabs' => array(
            'render element' => 'element',
        ),
        'quicktabs_tab_access_denied' => array(
            'variables' => array(
                'tab',
            ),
        ),
        'quicktabs_style_options' => array(
            'render element' => 'quicktabs_tabstyle',
            'file' => 'includes/admin.inc',
        ),
    );
}