You are here

function panels_everywhere_pane_navigation_content_type_admin_info in Panels Everywhere 7

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

File

plugins/content_types/pane_navigation.inc, line 24

Code

function panels_everywhere_pane_navigation_content_type_admin_info($subtype, $conf) {
  $block = new stdClass();
  $block->title = t('Page primary navigation and breadcrumb');
  $block->content = t('A general page navigation block that includes primary links, secondary links and breadcrumb. This can be easily modified by overriding pane-navigation.tpl.php in your theme.');
  return $block;
}