You are here

function access_grant_add_page_title in Access Control Kit 7

Menu title callback for adding a grant within a scheme.

1 string reference to 'access_grant_add_page_title'
access_menu in ./access.module
Implements hook_menu().

File

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

Code

function access_grant_add_page_title($scheme) {
  return t('Grant access to @scheme', array(
    '@scheme' => $scheme->name,
  ));
}