1 drupal.inc | &drupal_static($name, $default_value = NULL, $reset = FALSE) |
Provides central static variable storage.
Deprecated
since 1.0.0
See also
Related topics
File
- core/
includes/ drupal.inc, line 477 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function &drupal_static($name, $default_value = NULL, $reset = FALSE) {
return backdrop_static($name, $default_value, $reset);
}