You are here

function access_scheme_boolean_realms in Access Control Kit 7

Realms callback for the boolean scheme type.

See also

access_access_scheme_info()

1 string reference to 'access_scheme_boolean_realms'
access_access_scheme_info in ./access.access.inc
Implements hook_access_scheme_info().

File

callbacks/access.boolean.inc, line 13
Callback functions for the boolean access scheme type.

Code

function access_scheme_boolean_realms($scheme) {
  return array(
    0 => t('False'),
    1 => t('True'),
  );
}