| 7 bootstrap.inc | abstract protected DrupalCacheArray::resolveCacheMiss($offset) |
Resolves a cache miss.
When an offset is not found in the object, this is treated as a cache miss. This method allows classes implementing the interface to look up the actual value and allow it to be cached.
Parameters
$offset: The offset that was requested.
Return value
The value of the offset, or NULL if no value was found.
File
- includes/
bootstrap.inc, line 391 - Functions that need to be loaded on every Drupal request.
Code
abstract protected function resolveCacheMiss($offset);
Login or register to post comments