Full ELMS Learning Network documentation
function drupal_static_reset
cis7 bootstrap.inc | drupal_static_reset($name = NULL) |
cle7 bootstrap.inc | drupal_static_reset($name = NULL) |
elmsmedia7 bootstrap.inc | drupal_static_reset($name = NULL) |
icor7 bootstrap.inc | drupal_static_reset($name = NULL) |
meedjum_blog7 bootstrap.inc | drupal_static_reset($name = NULL) |
mooc7 bootstrap.inc | drupal_static_reset($name = NULL) |
Resets one or all centrally stored static variable(s).
Parameters
$name: Name of the static variable to reset. Omit to reset all variables.
90 calls to drupal_static_reset()
- admin_menu_flush_caches in sites/
all/ modules/ ulmus/ admin_menu/ admin_menu.module - Implements hook_flush_caches().
- block_page_build in modules/
block/ block.module - Implements hook_page_build().
- book_node_delete in modules/
book/ book.module - Implements hook_node_delete().
- context_page_build in sites/
all/ modules/ ulmus/ context/ context.core.inc - Implements hook_page_build().
- ctools_component_features_export_render in sites/
all/ modules/ ulmus/ features/ includes/ features.ctools.inc - Master implementation of hook_features_export_render() for all ctools components.
1 string reference to 'drupal_static_reset'
- data_update_6002 in sites/
all/ modules/ local_contrib/ data/ data.install - Add a primary key, required by CTools. Shorten name key to 128 char max.
File
- includes/
bootstrap.inc, line 3374 - Functions that need to be loaded on every Drupal request.
Code
function drupal_static_reset($name = NULL) {
drupal_static($name, NULL, TRUE);
}