You are here

function theme_panels_tabs_title in Panels Tabs 6

Return rendered title.

@themable

2 theme calls to theme_panels_tabs_title()
theme_panels_tabs_style_render_panel in plugins/styles/tabs.inc
Render panel callback (legacy).
theme_panels_tabs_style_render_region in plugins/styles/tabs.inc
Render region callback.

File

./panels_tabs.module, line 112
Definition of the 'tabs' panel style.

Code

function theme_panels_tabs_title($title) {
  return "<h3 class=\"pane-title\">" . $title . "</h3>\n";
}