You are here

function panels_node_legacy_menu in Panels 5.2

Implementation of hook_menu().

File

panels_node_legacy/panels_node_legacy.module, line 15
panels_node_legacy.module

Code

function panels_node_legacy_menu($may_cache) {
  if ($may_cache) {
    $items[] = array(
      'path' => 'admin/panels/node-legacy',
      'title' => t('Legacy node panes'),
      'access' => user_access('access administration pages'),
      'type' => MENU_NORMAL_ITEM,
      'callback' => 'panels_node_legacy_admin',
      'description' => t('Information about the legacy node content type.'),
    );
    return $items;
  }
}