protected function PhpBackend::normalizeCid in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::normalizeCid()
Ensures a normalized cache ID.
Parameters
string $cid: The passed in cache ID.
Return value
string A normalized cache ID.
4 calls to PhpBackend::normalizeCid()
- PhpBackend::delete in core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php - Deletes an item from the cache.
- PhpBackend::get in core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php - Returns data from the persistent cache.
- PhpBackend::invalidate in core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php - Marks a cache item as invalid.
- PhpBackend::set in core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php - Stores data in the persistent cache.
File
- core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 272 - Contains \Drupal\Core\Cache\PhpBackend.
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
protected function normalizeCid($cid) {
return Crypt::hashBase64($cid);
}