You are here

function facetapi_pretty_paths_menu in Facet API Pretty Paths 6.3

Same name and namespace in other branches
  1. 7 facetapi_pretty_paths.module \facetapi_pretty_paths_menu()

Implements hook_menu().

File

./facetapi_pretty_paths.module, line 73
The FacetAPI Pretty Paths module.

Code

function facetapi_pretty_paths_menu() {
  $items = array();
  $items['admin/settings/facetapi_pretty_paths'] = array(
    'title' => 'FacetAPI Pretty Paths',
    'description' => 'Configure pretty paths settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'facetapi_pretty_paths_admin_form',
    ),
    'access arguments' => array(
      'administer facetapi pretty paths',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}