function module_grants_test_number_module_grants_realm_function_register_alter in Module Grants 7
Implement hook_module_grants_realm_function_register
File
- tests/
module_grants_test_number.module, line 46 - Dummy module implementing node access related hooks to test access interaction with the Module Grants module.
Code
function module_grants_test_number_module_grants_realm_function_register_alter(&$function_registry) {
$function_registry['module_grants_test_number'] = function ($realm) {
return array_key_exists($realm, module_grants_test_number_get_grants());
};
}