drupal_static_reset

Versions
mediamosa-21
drupal_static_reset($name = NULL)

Reset one or all centrally stored static variable(s).

Parameters

$name Name of the static variable to reset. Omit to reset all variables.

▾ 45 functions call drupal_static_reset()

drupal_clear_path_cache in includes/path.inc
Clear the path cache.
drupal_process_form in includes/form.inc
Processes a form submission.
drupal_rewrite_settings in includes/install.inc
Replace values in settings.php with values in the submitted array.
drupal_theme_initialize in includes/theme.inc
Initialize the theme system by loading the theme.
entity_info_cache_clear in includes/common.inc
Resets the cached information about entity types.
filter_formats_reset in modules/filter/filter.module
Resets the static cache of all text formats.
filter_modules_disabled in modules/filter/filter.module
Implements hook_modules_disabled().
filter_modules_enabled in modules/filter/filter.module
Implements hook_modules_enabled().
form_clear_error in includes/form.inc
Clear all errors against all form elements made by form_set_error().
form_options_flatten in includes/form.inc
image_style_flush in modules/image/image.module
Flush cached media for a style.
install_finished in includes/install.core.inc
Installation task; perform final steps and display a 'finished' page.
install_settings_form in includes/install.core.inc
Installation task; define a form to configure and rewrite settings.php.
install_verify_settings in includes/install.core.inc
Verify existing settings.php
list_field_update_field in modules/field/modules/list/list.module
Implements hook_field_update_field().
locale_add_language in includes/locale.inc
API function to add a language.
locale_languages_overview_form in modules/locale/locale.admin.inc
User interface for the language overview screen.
locale_reset in modules/locale/locale.module
Reset static variables used by locale().
locale_translate_export_screen in modules/locale/locale.admin.inc
User interface for the translation export screen.
locale_translate_import_form in modules/locale/locale.admin.inc
User interface for the translation import screen.
locale_translate_import_form_submit in modules/locale/locale.admin.inc
Process the locale import form submission.
locale_translate_overview_screen in modules/locale/locale.admin.inc
Overview screen for translations.
locale_translation_filters in modules/locale/locale.admin.inc
List locale translation filters that can be applied.
menu_reset_static_cache in includes/menu.inc
Resets the menu system static cache.
module_implements in includes/module.inc
Determine which modules are implementing a hook.
module_list in includes/module.inc
Collect a list of all loaded modules. During the bootstrap, return only vital modules. See bootstrap.inc
node_menu in modules/node/node.module
Implements hook_menu().
node_types_rebuild in modules/node/node.module
Resets the database cache of node types.
node_type_delete in modules/node/node.module
Deletes a node type from the database.
node_type_save in modules/node/node.module
Saves a node type to the database.
node_update_7004 in modules/node/node.install
Extend the existing default preview and teaser settings to all node types.
node_update_7006 in modules/node/node.install
Convert body and teaser from node properties to fields, and migrate status/comment/promote and sticky columns to the {node_revision} table.
search_menu in modules/search/search.module
Implements hook_menu().
shortcut_set_assign_user in modules/shortcut/shortcut.module
Assigns a user to a particular shortcut set.
system_add_date_format_type_form in modules/system/system.admin.inc
Add new date type.
system_date_formats_rebuild in modules/system/system.module
Resets the database cache of date formats and saves all new formats.
system_date_time_formats in modules/system/system.admin.inc
Displays the date format strings overview page.
system_date_time_settings in modules/system/system.admin.inc
Form builder; Configure the site date and time settings.
system_list_reset in includes/module.inc
Reset all system_list() caches.
taxonomy_terms_static_reset in modules/taxonomy/taxonomy.module
Clear all static cache variables for terms..
user_role_delete in modules/user/user.module
Delete a user role from database.
user_role_grant_permissions in modules/user/user.module
Grant permissions to a user role.
user_role_revoke_permissions in modules/user/user.module
Revoke permissions from a user role.
user_role_save in modules/user/user.module
Save a user role to the database.
_form_validate in includes/form.inc
Performs validation on form elements. First ensures required fields are completed, #maxlength is not exceeded, and selected options were in the list of options given to the user. Then calls user-defined validators.

Code

includes/bootstrap.inc, line 2620

<?php
function drupal_static_reset($name = NULL) {
  drupal_static($name, NULL, TRUE);
}
?>