function access_info_cache_clear in Access Control Kit 7
Clears cached ACK API information.
6 calls to access_info_cache_clear()
- access_field_create_field in ./
access.module - Implements hook_field_create_field().
- access_field_delete_field in ./
access.module - Implements hook_field_delete_field().
- access_field_update_field in ./
access.module - Implements hook_field_update_field().
- access_taxonomy_vocabulary_delete in ./
access.module - Implements hook_taxonomy_vocabulary_delete().
- access_taxonomy_vocabulary_insert in ./
access.module - Implements hook_taxonomy_vocabulary_insert().
File
- ./
access.module, line 744 - The access control kit module.
Code
function access_info_cache_clear() {
cache_clear_all('access_scheme_info', 'cache');
drupal_static_reset('access_scheme_info');
cache_clear_all('access_handler_info', 'cache');
drupal_static_reset('access_handler_info');
cache_clear_all('access_info', 'cache');
drupal_static_reset('access_info');
}