You are here

function xmlsitemap_perm in XML sitemap 5.2

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

Implementation of hook_perm().

File

xmlsitemap/xmlsitemap.module, line 187
Creates a sitemap compatible with the sitemaps.org schema.

Code

function xmlsitemap_perm() {
  return array(
    'override node settings',
    'override profile settings',
  );
}