You are here

function panels_everywhere_pane_header_content_type_admin_info in Panels Everywhere 7

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

File

plugins/content_types/pane_header.inc, line 29

Code

function panels_everywhere_pane_header_content_type_admin_info($subtype, $conf) {
  $block = new stdClass();
  $block->title = t('Page header elements');
  $block->content = t('By default, this pane will contain the site name, logo and search box. Its actual contents can be easily themed by editing pane-header.tpl.php in the site theme.');
  return $block;
}