class LanguageNegotiationTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/language/tests/language_test/src/Plugin/LanguageNegotiation/LanguageNegotiationTest.php \Drupal\language_test\Plugin\LanguageNegotiation\LanguageNegotiationTest
Class for identifying language from a selected language.
Plugin annotation
@LanguageNegotiation(
id = "test_language_negotiation_method",
weight = -10,
name = @Translation("Test"),
description = @Translation("This is a test language negotiation method."),
types = {Drupal\Core\Language\LanguageInterface::TYPE_CONTENT,
"test_language_type", "fixed_test_language_type"}
)
Hierarchy
- class \Drupal\language\LanguageNegotiationMethodBase implements LanguageNegotiationMethodInterface
- class \Drupal\language_test\Plugin\LanguageNegotiation\LanguageNegotiationTest
Expanded class hierarchy of LanguageNegotiationTest
File
- core/
modules/ language/ tests/ language_test/ src/ Plugin/ LanguageNegotiation/ LanguageNegotiationTest.php, line 25 - Contains \Drupal\language_test\Plugin\LanguageNegotiation\LanguageNegotiationTest.
Namespace
Drupal\language_test\Plugin\LanguageNegotiationView source
class LanguageNegotiationTest extends LanguageNegotiationMethodBase {
/**
* The language negotiation method id.
*/
const METHOD_ID = 'test_language_negotiation_method';
/**
* {@inheritdoc}
*/
public function getLangcode(Request $request = NULL) {
return 'it';
}
}