function panels_get_pane_title in Panels 6.3
Same name and namespace in other branches
- 5.2 includes/plugins.inc \panels_get_pane_title()
- 6.2 includes/plugins.inc \panels_get_pane_title()
- 7.3 includes/plugins.inc \panels_get_pane_title()
Get the title of a pane.
Parameters
$pane: The $pane object.
1 call to panels_get_pane_title()
- theme_panels_common_content_list in includes/
common.inc - Create a visible list of content in a display. Note that the contexts must be pre-loaded.
File
- includes/
plugins.inc, line 250 - Contains helper code for plugins and contexts.
Code
function panels_get_pane_title(&$pane, $context = array(), $incoming_content = NULL) {
ctools_include('content');
return ctools_content_admin_title($pane->type, $pane->subtype, $pane->configuration, $context);
}