You are here

function panels_get_pane_title in Panels 7.3

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_get_pane_title()
  2. 6.3 includes/plugins.inc \panels_get_pane_title()
  3. 6.2 includes/plugins.inc \panels_get_pane_title()

Get the title of a pane.

Parameters

$pane: The $pane object.

Deprecated

@todo this function should be removed.

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 261
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);
}