You are here

function facetapi_pretty_paths_permission in Facet API Pretty Paths 7

Same name and namespace in other branches
  1. 6.3 facetapi_pretty_paths.module \facetapi_pretty_paths_permission()

Implements hook_permission().

File

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

Code

function facetapi_pretty_paths_permission() {
  return array(
    'administer facetapi pretty paths' => array(
      'title' => t('Administer Facet API Pretty Paths'),
    ),
  );
}