You are here

function xmlsitemap_perm in XML sitemap 6.2

Same name and namespace in other branches
  1. 5.2 xmlsitemap/xmlsitemap.module \xmlsitemap_perm()
  2. 6 xmlsitemap.module \xmlsitemap_perm()

Implements hook_perm().

File

./xmlsitemap.module, line 99
Main file for the xmlsitemap module.

Code

function xmlsitemap_perm() {
  $permissions['administer xmlsitemap'] = array(
    'title' => t('Administer XML sitemap settings.'),
  );
  return array_keys($permissions);
}