You are here

function panels_everywhere_pane_messages_content_type_render in Panels Everywhere 7

Same name and namespace in other branches
  1. 6 plugins/content_types/pane_messages.inc \panels_everywhere_pane_messages_content_type_render()

Output function for the 'pane_tabs' content type.

Outputs the tabs (local tasks) of the current page.

File

plugins/content_types/pane_messages.inc, line 23

Code

function panels_everywhere_pane_messages_content_type_render($subtype, $conf, $panel_messagesrgs) {
  $block = new stdClass();
  $block->content = theme('pane_messages');
  return $block;
}