function access_grant_page in Access Control Kit 7
Menu page callback to view a single access grant.
1 string reference to 'access_grant_page'
- access_menu in ./
access.module - Implements hook_menu().
File
- ./
access.pages.inc, line 11 - Page callbacks for the access control kit module.
Code
function access_grant_page($grant) {
return access_grant_view_multiple(array(
$grant->gid => $grant,
), 'full');
}