You are here

function domain_xmlsitemap_node_grants_alter in Domain XML sitemap 6

Same name and namespace in other branches
  1. 7 domain_xmlsitemap.module \domain_xmlsitemap_node_grants_alter()

Implements hook_node_grants_alter().

File

./domain_xmlsitemap.module, line 37

Code

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,
    );
  }
}