Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Language/LanguageDefault.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 | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Language; /** * Provides a simple get and set wrapper to the default language object. * * The default language must be provided without dependencies since it is both * configured and a dependency of the configuration system. The LanguageDefault * object is a container service. The default values are stored on the container * by \Drupal\Core\DrupalKernel::buildContainer(). This allows services to * override this parameter in a ServiceProvider, for example, * \Drupal\language\LanguageServiceProvider::alter(). */ class LanguageDefault { /** * The default language. * * @var \Drupal\Core\Language\LanguageInterface */ protected $language; /** * Constructs the default language object. * * @param array $values * The properties used to construct the default language. */ public function __construct(array $values) { $this->set(new Language($values)); } /** * Gets the default language. * * @return \Drupal\Core\Language\LanguageInterface * The default language. */ public function get() { return $this->language; } /** * Sets the default language. * * @param \Drupal\Core\Language\LanguageInterface $language * The default language. */ public function set(LanguageInterface $language) { $this->language = $language; } }