protected function Registry::setCache in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Theme/Registry.php \Drupal\Core\Theme\Registry::setCache()
Persists the theme registry in the cache backend.
1 call to Registry::setCache()
- Registry::get in core/
lib/ Drupal/ Core/ Theme/ Registry.php - Returns the complete theme registry from cache or rebuilds it.
File
- core/
lib/ Drupal/ Core/ Theme/ Registry.php, line 247 - Contains \Drupal\Core\Theme\Registry.
Class
- Registry
- Defines the theme registry service.
Namespace
Drupal\Core\ThemeCode
protected function setCache() {
$this->cache
->set('theme_registry:' . $this->theme
->getName(), $this->registry, Cache::PERMANENT, array(
'theme_registry',
));
}