You are here

function quicktabs_theme in Quick Tabs 6.3

Same name and namespace in other branches
  1. 8.3 quicktabs.module \quicktabs_theme()
  2. 6 quicktabs.module \quicktabs_theme()
  3. 6.2 quicktabs.module \quicktabs_theme()
  4. 7.3 quicktabs.module \quicktabs_theme()
  5. 7.2 quicktabs.module \quicktabs_theme()

Implementation of hook_theme().

File

./quicktabs.module, line 20

Code

function quicktabs_theme() {
  return array(
    'quicktabs_settings' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'includes/admin.inc',
    ),
    'quicktabs_admin_form_tabs' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'includes/admin.inc',
    ),
    'quicktabs_views_render' => array(
      'arguments' => array(
        'view' => NULL,
        'tabs' => NULL,
        'machine_name' => NULL,
      ),
      'file' => 'includes/quicktabs.views.inc',
    ),
    'quicktabs_tabs' => array(
      'arguments' => array(
        'quicktabs',
        'active_tab' => 'none',
      ),
    ),
    'quicktabs' => array(
      'arguments' => array(
        'quicktabs',
      ),
    ),
    'quicktabs_tab_access_denied' => array(
      'arguments' => array(
        'tab',
      ),
    ),
  );
}