You are here

function panels_node_content_menu in Panels 6.2

Implementation of hook_menu().

File

panels_node_content/panels_node_content.module, line 15
panels_node_content.module

Code

function panels_node_content_menu() {
  $items['admin/panels/node-content'] = array(
    'title' => 'Node panes',
    'access arguments' => array(
      'access administration pages',
    ),
    'type' => MENU_NORMAL_ITEM,
    'page callback' => 'panels_node_content_admin',
    'description' => 'Information about the content node content type.',
  );
  return $items;
}