You are here

function ctools_page_help_content_type_render in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 plugins/content_types/page/page_help.inc \ctools_page_help_content_type_render()

Output function for the 'page_help' content type.

Outputs the breadcrumb for the current page.

File

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