protected function ViewsData::prepareCid in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/ViewsData.php \Drupal\views\ViewsData::prepareCid()
Prepares the cache ID by appending a language code.
Parameters
string $cid: The cache ID to prepare.
Return value
string The prepared cache ID.
2 calls to ViewsData::prepareCid()
- ViewsData::cacheGet in core/
modules/ views/ src/ ViewsData.php - Gets data from the cache backend.
- ViewsData::cacheSet in core/
modules/ views/ src/ ViewsData.php - Sets data to the cache backend.
File
- core/
modules/ views/ src/ ViewsData.php, line 215 - Contains \Drupal\views\ViewsData.
Class
- ViewsData
- Class to manage and lazy load cached views data.
Namespace
Drupal\viewsCode
protected function prepareCid($cid) {
return $cid . ':' . $this->langcode;
}