You are here

function access_grant_uri in Access Control Kit 7

Entity URI callback for an access grant.

1 string reference to 'access_grant_uri'
access_entity_info in ./access.module
Implements hook_entity_info().

File

./access.module, line 68
The access control kit module.

Code

function access_grant_uri($grant) {
  return array(
    'path' => 'admin/access/grant/' . $grant->gid,
  );
}