You are here

function config_perms_cache_rebuild in Custom Permissions 6.2

Same name and namespace in other branches
  1. 7.2 config_perms.module \config_perms_cache_rebuild()

Configure permission names for urls:

2 calls to config_perms_cache_rebuild()
config_perms_admin_form_submit in ./config_perms.admin.inc
Submit handler.
config_perms_perms in ./config_perms.module
Load all permissions

File

./config_perms.module, line 33
Adds more granular permissions for items under 'administer site configuration'.

Code

function config_perms_cache_rebuild() {
  $perms = config_perms_load();
  cache_set('config_perms', $perms);
}