You are here

function panels_everywhere_pane_messages_content_type_admin_info 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_admin_info()

File

plugins/content_types/pane_messages.inc, line 29

Code

function panels_everywhere_pane_messages_content_type_admin_info($subtype, $conf) {
  $block = new stdClass();
  $block->title = t('Page messages, tabs and help');
  $block->content = t('A general page messages block that includes tabs, messages and help. It is normally placed in the same region as your content. This can be easily modified by overriding pane-messages.tpl.php in your theme.');
  return $block;
}