public function DrupalCacheArray::offsetExists in Drupal 7
Implements ArrayAccess::offsetExists().
1 method overrides DrupalCacheArray::offsetExists()
- ThemeRegistry::offsetExists in includes/
theme.inc - Implements ArrayAccess::offsetExists().
File
- includes/
bootstrap.inc, line 362 - Functions that need to be loaded on every Drupal request.
Class
- DrupalCacheArray
- Provides a caching wrapper to be used in place of large array structures.
Code
public function offsetExists($offset) {
return $this
->offsetGet($offset) !== NULL;
}