Skip to main content
Home
Drupal API Help
Helping Drupal Community, One API at a time

Main menu

  • Home
  • Drupal Core
  • Getting Help

You are here

Home » API reference » Access Control Kit 7 » access.module

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().

... See full list

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');
}

API Navigation

  • Access Control Kit 7
  • Classes
  • Functions
  • Files

Drupal is a registered trademark of Dries Buytaert. This site is not affiliated with Dries Buytaert, Drupal Association or Drupal.org.