function ViewsData::cacheGet
Same name in other branches
- 9 core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::cacheGet()
- 10 core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::cacheGet()
- 11.x core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::cacheGet()
Gets data from the cache backend.
Parameters
string $cid: The cache ID to return.
Return value
mixed The cached data, if any. This will immediately return FALSE if the $skipCache property is TRUE.
2 calls to ViewsData::cacheGet()
- ViewsData::get in core/
modules/ views/ src/ ViewsData.php - Gets data for a particular table, or all tables.
- ViewsData::getData in core/
modules/ views/ src/ ViewsData.php - Gets all data invoked by hook_views_data().
File
-
core/
modules/ views/ src/ ViewsData.php, line 194
Class
- ViewsData
- Class to manage and lazy load cached views data.
Namespace
Drupal\viewsCode
protected function cacheGet($cid) {
if ($this->skipCache) {
return FALSE;
}
return $this->cacheBackend
->get($this->prepareCid($cid));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.