function domain_node_access_acknowledge in Domain Access 7.3
Same name and namespace in other branches
- 6.2 domain.module \domain_node_access_acknowledge()
- 7.2 domain.module \domain_node_access_acknowledge()
Implements hook_node_access_acknowledge().
File
- ./
domain.module, line 3389 - Core module functions for the Domain Access suite.
Code
function domain_node_access_acknowledge($grant) {
if ($grant['realm'] == 'domain_all') {
return TRUE;
}
}