domain_xmlsitemap.module in Domain XML sitemap 7
Same filename and directory in other branches
File
domain_xmlsitemap.moduleView source
<?php
/**
* Implements hook_node_grants_alter().
*/
function domain_xmlsitemap_node_grants_alter(&$grants, $account, $op) {
if (!empty($account->xmlsitemap_node_access)) {
unset($grants['domain_site']);
unset($grants['domain_id']);
$grants['domain_all'] = array(
0,
);
}
}
Functions
Name![]() |
Description |
---|---|
domain_xmlsitemap_node_grants_alter | Implements hook_node_grants_alter(). |