You are here

function panels_everywhere_page_content_content_type_admin_info in Panels Everywhere 7

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

File

plugins/content_types/page_content.inc, line 46

Code

function panels_everywhere_page_content_content_type_admin_info($subtype, $conf, $context) {
  $block = new StdClass();
  $block->title = t('Main page content');
  $block->content = t('This will contain the content of page being viewed. In order to get the page title to be used as a Panel title, it is recommended that you set the "Title type" to "From pane" and then check "Panel title" in the dropdown menu for this pane.');
  return $block;
}