You are here

function panels_ajax_tab_theme in Panels Ajax Tabs 7

Implements hook_theme().

File

./panels_ajax_tab.module, line 93
Allows users to create and manage Panels Ajax Tabs.

Code

function panels_ajax_tab_theme($existing, $type, $theme, $path) {
  return array(
    'panels_ajax_tab_tabs' => array(
      'variables' => array(
        'tabs' => array(),
        'tab_container_id' => NULL,
        'context_string' => NULL,
        'clean_url' => FALSE,
        'clean_url_delim' => '/',
      ),
    ),
    'panels_ajax_tab_container' => array(
      'variables' => array(
        'tab_container_id' => NULL,
        'preloaded' => '',
        'content' => '',
      ),
    ),
    'panels_ajax_tab_ajax' => array(
      'variables' => array(
        'minipanel' => NULL,
      ),
    ),
    'panels_ajax_tab_tabs_edit_form' => array(
      'render element' => 'form',
    ),
  );
}