Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
75.00% |
3 / 4 |
CRAP | |
85.71% |
6 / 7 |
| LanguageNegotiationMethodBase | |
0.00% |
0 / 1 |
|
75.00% |
3 / 4 |
4.05 | |
85.71% |
6 / 7 |
| setLanguageManager | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| setConfig | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| setCurrentUser | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| persist | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\language\LanguageNegotiationMethodBase. | |
| */ | |
| namespace Drupal\language; | |
| use Drupal\Core\Config\ConfigFactoryInterface; | |
| use Drupal\Core\Language\LanguageInterface; | |
| use Drupal\Core\Session\AccountInterface; | |
| /** | |
| * Base class for language negotiation methods. | |
| */ | |
| 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. | |
| } | |
| } |