You are here

function theme_panels_ajax_tab_container in Panels Ajax Tabs 7

Theme function that renders the container.

1 theme call to theme_panels_ajax_tab_container()
panels_ajax_tab_container_render in plugins/content_types/panels_ajax_tab_container.inc
Rendering function for the 'panels_ajax_tab_container' content type.

File

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

Code

function theme_panels_ajax_tab_container($vars) {
  return '<div data-panels-ajax-tab-preloaded="' . $vars['preloaded'] . '" id="panels-ajax-tab-container-' . $vars['tab_container_id'] . '" class="panels-ajax-tab-container">' . $vars['content'] . '</div>';
}