5 * Plugin to handle the 'page_messages' content type which allows the
6 * status messages of the current page to be embedded into a panel.
10 * Plugins are described by creating a $plugin array which will be used
11 * by the system that includes this file.
14 'title' => t('Status messages'),
16 'icon' => 'icon_page.png',
17 'description' => t('Add the status messages of the current page as content.'),
18 'category' => t('Page elements'),
19 'render last' => TRUE
,
23 * Output function for the 'page_messages' content type.
25 * Outputs the breadcrumb for the current page.
27 function ctools_page_messages_content_type_render($subtype, $conf, $panel_args) {
28 $block = new
stdClass();
29 $block->content
= theme('status_messages');