class LanguageNegotiationMethodManager
Same name and namespace in other branches
- 10 core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager
- 11.x core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager
- 8.9.x core/modules/language/src/LanguageNegotiationMethodManager.php \Drupal\language\LanguageNegotiationMethodManager
Manages language negotiation methods.
Hierarchy
- class \Drupal\Component\Plugin\PluginManagerBase implements \Drupal\Component\Plugin\PluginManagerInterface uses \Drupal\Component\Plugin\Discovery\DiscoveryTrait
- class \Drupal\Core\Plugin\DefaultPluginManager implements \Drupal\Component\Plugin\PluginManagerInterface, \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface, \Drupal\Core\Cache\CacheableDependencyInterface uses \Drupal\Component\Plugin\Discovery\DiscoveryCachedTrait, \Drupal\Core\Cache\UseCacheBackendTrait extends \Drupal\Component\Plugin\PluginManagerBase
- class \Drupal\language\LanguageNegotiationMethodManager extends \Drupal\Core\Plugin\DefaultPluginManager
- class \Drupal\Core\Plugin\DefaultPluginManager implements \Drupal\Component\Plugin\PluginManagerInterface, \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface, \Drupal\Core\Cache\CacheableDependencyInterface uses \Drupal\Component\Plugin\Discovery\DiscoveryCachedTrait, \Drupal\Core\Cache\UseCacheBackendTrait extends \Drupal\Component\Plugin\PluginManagerBase
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
File
-
core/
modules/ language/ src/ LanguageNegotiationMethodManager.php, line 12
Namespace
Drupal\languageView 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.