You are here

function facetapi_pretty_paths_permission in Facet API Pretty Paths 6.3

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

Implements hook_permission().

File

./facetapi_pretty_paths.module, line 89
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'),
    ),
  );
}