protected ViewsData::cacheGet($cid)
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.
File
- core/modules/views/src/ViewsData.php, line 194
Class
- ViewsData
- Class to manage and lazy load cached views data.
Namespace
Drupal\views
Code
1 2 3 4 5 6 7 | protected function cacheGet( $cid ) { if ( $this ->skipCache) { return FALSE; } return $this ->cacheBackend->get( $this ->prepareCid( $cid )); } |
Please login to continue.