You are here

function import_menu in Import 6

File

./import.module, line 32

Code

function import_menu() {
  $items = array();
  $items['admin/build/import'] = array(
    'title' => 'Import',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'import_admin_form',
    ),
    'type' => MENU_NORMAL_ITEM,
    'access arguments' => array(
      'administer nodes',
    ),
  );
  return $items;
}