abstract class LanguageNegotiationMethodBase in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/language/src/LanguageNegotiationMethodBase.php \Drupal\language\LanguageNegotiationMethodBase
Base class for language negotiation methods.
Hierarchy
- class \Drupal\language\LanguageNegotiationMethodBase implements LanguageNegotiationMethodInterface
Expanded class hierarchy of LanguageNegotiationMethodBase
10 files declare their use of LanguageNegotiationMethodBase
- LanguageNegotiationBrowser.php in core/
modules/ language/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationBrowser.php - Contains \Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationBrowser.
- LanguageNegotiationContentEntity.php in core/
modules/ language/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationContentEntity.php - Contains \Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationContentEntity.
- LanguageNegotiationSelected.php in core/
modules/ language/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationSelected.php - Contains \Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationSelected.
- LanguageNegotiationSession.php in core/
modules/ language/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationSession.php - Contains \Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationSession.
- LanguageNegotiationTest.php in core/
modules/ language/ tests/ language_test/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationTest.php - Contains \Drupal\language_test\Plugin\LanguageNegotiation\LanguageNegotiationTest.
File
- core/
modules/ language/ src/ LanguageNegotiationMethodBase.php, line 17 - Contains \Drupal\language\LanguageNegotiationMethodBase.
Namespace
Drupal\languageView source
abstract class LanguageNegotiationMethodBase implements LanguageNegotiationMethodInterface {
/**
* The language manager.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* The configuration factory.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $config;
/**
* The current active user.
*
* @return \Drupal\Core\Session\AccountInterface
*/
protected $currentUser;
/**
* {@inheritdoc}
*/
public function setLanguageManager(ConfigurableLanguageManagerInterface $language_manager) {
$this->languageManager = $language_manager;
}
/**
* {@inheritdoc}
*/
public function setConfig(ConfigFactoryInterface $config) {
$this->config = $config;
}
/**
* {@inheritdoc}
*/
public function setCurrentUser(AccountInterface $current_user) {
$this->currentUser = $current_user;
}
/**
* {@inheritdoc}
*/
public function persist(LanguageInterface $language) {
// Default implementation persists nothing.
}
}