class LanguageNegotiationMethodManager

Same name and namespace in other branches
  1. 10 core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager
  2. 11.x core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager
  3. 8.9.x core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager

Manages language negotiation methods.

Hierarchy

Expanded class hierarchy of LanguageNegotiationMethodManager

1 string reference to 'LanguageNegotiationMethodManager'
language.services.yml in core/modules/language/language.services.yml
core/modules/language/language.services.yml
1 service uses LanguageNegotiationMethodManager
plugin.manager.language_negotiation_method in core/modules/language/language.services.yml
Drupal\language\LanguageNegotiationMethodManager

File

core/modules/language/src/LanguageNegotiationMethodManager.php, line 12

Namespace

Drupal\language
View source
class LanguageNegotiationMethodManager extends DefaultPluginManager {
  
  /**
   * The cache key prefix.
   */
  protected $cacheKeyPrefix;
  
  /**
   * Constructs a new LanguageNegotiationMethodManager object.
   *
   * @param \Traversable $namespaces
   *   An object that implements \Traversable which contains the root paths
   *   keyed by the corresponding namespace to look for plugin implementations.
   * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
   *   An object that implements CacheBackendInterface
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   An object that implements ModuleHandlerInterface
   */
  public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
    parent::__construct('Plugin/LanguageNegotiation', $namespaces, $module_handler, 'Drupal\\language\\LanguageNegotiationMethodInterface', 'Drupal\\language\\Annotation\\LanguageNegotiation');
    $this->cacheBackend = $cache_backend;
    $this->cacheKeyPrefix = 'language_negotiation_plugins';
    $this->cacheKey = 'language_negotiation_plugins';
    $this->alterInfo('language_negotiation_info');
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.