You are here

function neutral_paths_menu in Neutral paths 7

Implements hook_menu().

File

./neutral_paths.module, line 14
Neutral paths.

Code

function neutral_paths_menu() {
  $items = array();
  $items['admin/config/search/path/language_settings'] = array(
    'title' => 'Language neutrality',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'neutral_paths_admin',
    ),
    'access arguments' => array(
      'administer url aliases',
    ),
    'type' => MENU_LOCAL_TASK,
    'weight' => 60,
  );
  return $items;
}