ctools_page_help_content_type_render
Drupal 7 ctools_page_help_content_type_render($subtype, $conf, $panel_args)
Output function for the 'page_help' content type.
Outputs the breadcrumb for the current page.
File
- sites/
all/ modules/ ctools/ plugins/ content_types/ page/ page_help.inc, line 27 - Plugin to handle the 'page_help' content type which allows the help text of the current page to be embedded into a panel.
Code
function ctools_page_help_content_type_render($subtype, $conf, $panel_args) {
$block = new stdClass();
$block->content = theme('help');
return $block;
}

