You are here

function m4032404_menu in 403 to 404 7

Implements hook_menu().

File

./m4032404.module, line 11
403 to 404 module functions.

Code

function m4032404_menu() {
  $items = array();
  $items['m4032404'] = array(
    'title' => '403 to 404 callback',
    'page callback' => 'm4032404_callback',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
  );
  $items['admin/config/system/m40323404'] = array(
    'type' => MENU_NORMAL_ITEM,
    'title' => '403 to 404 Settings',
    'description' => 'Settings for 403 to 404',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'm4032404_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}