function facetapi_pretty_paths_menu in Facet API Pretty Paths 7
Same name and namespace in other branches
- 6.3 facetapi_pretty_paths.module \facetapi_pretty_paths_menu()
Implements hook_menu().
File
- ./
facetapi_pretty_paths.module, line 143 - The FacetAPI Pretty Paths module.
Code
function facetapi_pretty_paths_menu() {
$items = array();
$items['admin/config/search/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;
}