Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Installer/ConfigOverride.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 7a779792577d |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Installer; use Drupal\Core\Cache\CacheableMetadata; use Drupal\Core\Config\ConfigFactoryOverrideInterface; use Drupal\Core\Config\StorageInterface; use Drupal\Core\DependencyInjection\ContainerBuilder; use Drupal\Core\DependencyInjection\ServiceProviderInterface; /** * Override configuration during the installer. */ class ConfigOverride implements ServiceProviderInterface, ConfigFactoryOverrideInterface { /** * {@inheritdoc} */ public function register(ContainerBuilder $container) { // Register this class so that it can override configuration. $container ->register('core.install_config_override', static::class) ->addTag('config.factory.override'); } /** * {@inheritdoc} */ public function loadOverrides($names) { $overrides = []; if (drupal_installation_attempted() && function_exists('drupal_install_profile_distribution_name')) { // Early in the installer the site name is unknown. In this case we need // to fallback to the distribution's name. $overrides['system.site'] = [ 'name' => drupal_install_profile_distribution_name(), ]; } return $overrides; } /** * {@inheritdoc} */ public function getCacheSuffix() { return 'core.install_config_override'; } /** * {@inheritdoc} */ public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) { return NULL; } /** * {@inheritdoc} */ public function getCacheableMetadata($name) { return new CacheableMetadata(); } }