class TestInterpreter in Recurring Dates Field 3.1.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
- 3.x tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter
- 3.0.x tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter
Provides an interpreter for testing.
Plugin annotation
@DateRecurInterpreter(
id = "test_interpreter",
label = @Translation("Testing interpreter"),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\date_recur\Plugin\DateRecurInterpreterPluginBase implements DateRecurInterpreterPluginInterface uses PluginWithFormsTrait
- class \Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreter\TestInterpreter implements PluginFormInterface
- class \Drupal\date_recur\Plugin\DateRecurInterpreterPluginBase implements DateRecurInterpreterPluginInterface uses PluginWithFormsTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of TestInterpreter
File
- tests/
modules/ date_recur_interpreter_test/ src/ Plugin/ DateRecurInterpreter/ TestInterpreter.php, line 19
Namespace
Drupal\date_recur_interpreter_test\Plugin\DateRecurInterpreterView source
class TestInterpreter extends DateRecurInterpreterPluginBase implements PluginFormInterface {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() : array {
return [
'show_foo' => FALSE,
];
}
/**
* {@inheritdoc}
*/
public function interpret(array $rules, string $language, ?\DateTimeZone $timeZone = NULL) : string {
$pluginConfig = $this
->getConfiguration();
if ($pluginConfig['show_foo']) {
return 'foo';
}
else {
return 'bar';
}
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form['show_foo'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Show the foo'),
'#default_value' => $this->configuration['show_foo'],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->configuration['show_foo'] = $form_state
->getValue('show_foo');
}
/**
* {@inheritdoc}
*/
public function supportedLanguages() : array {
return [
'es',
];
}
}