public function TestInterpreter::supportedLanguages in Recurring Dates Field 3.0.x
Same name and namespace in other branches
- 8.2 tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter::supportedLanguages()
- 3.x tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter::supportedLanguages()
- 3.1.x tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter::supportedLanguages()
The languages supported by this plugin.
Two letter langcodes. E.g: 'en', 'fr', etc.
Return value
string[] Supported languages.
Overrides DateRecurInterpreterPluginInterface::supportedLanguages
File
- tests/
modules/ date_recur_interpreter_test/ src/ Plugin/ DateRecurInterpreter/ TestInterpreter.php, line 72
Class
- TestInterpreter
- Provides an interpreter for testing.
Namespace
Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreterCode
public function supportedLanguages() : array {
return [
'es',
];
}