protected function DrupalKernel::cacheDrupalContainer in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::cacheDrupalContainer()
Stores the container definition in a cache.
Parameters
array $container_definition: The container definition to cache.
Return value
bool TRUE if the container was successfully cached.
1 call to DrupalKernel::cacheDrupalContainer()
- DrupalKernel::initializeContainer in core/
lib/ Drupal/ Core/ DrupalKernel.php - Initializes the service container.
1 method overrides DrupalKernel::cacheDrupalContainer()
- UpdateKernel::cacheDrupalContainer in core/
lib/ Drupal/ Core/ Update/ UpdateKernel.php - Stores the container definition in a cache.
File
- core/
lib/ Drupal/ Core/ DrupalKernel.php, line 1243 - Contains \Drupal\Core\DrupalKernel.
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\CoreCode
protected function cacheDrupalContainer(array $container_definition) {
$saved = TRUE;
try {
$this->bootstrapContainer
->get('cache.container')
->set($this
->getContainerCacheKey(), $container_definition);
} catch (\Exception $e) {
// There is no way to get from the Cache API if the cache set was
// successful or not, hence an Exception is caught and the caller informed
// about the error condition.
$saved = FALSE;
}
return $saved;
}