function xmlsitemap_perm in XML sitemap 6
Same name and namespace in other branches
- 5.2 xmlsitemap/xmlsitemap.module \xmlsitemap_perm()
- 6.2 xmlsitemap.module \xmlsitemap_perm()
Implementation of hook_perm().
File
- ./
xmlsitemap.module, line 178 - Creates a sitemap compatible with the sitemaps.org schema.
Code
function xmlsitemap_perm() {
return array(
'override node settings',
'override profile settings',
);
}