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