function CacheCollector::lazyLoadCache

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Cache/CacheCollector.php \Drupal\Core\Cache\CacheCollector::lazyLoadCache()

Loads the cache if not already done.

File

core/lib/Drupal/Core/Cache/CacheCollector.php, line 333

Class

CacheCollector
Default implementation for CacheCollectorInterface.

Namespace

Drupal\Core\Cache

Code

protected function lazyLoadCache() {
  if ($this->cacheLoaded) {
    return;
  }
  // The cache was not yet loaded, set flag to TRUE.
  $this->cacheLoaded = TRUE;
  if ($cache = $this->cache
    ->get($this->getCid())) {
    $this->cacheCreated = $cache->created;
    $this->storage = $cache->data;
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.