public function CurrentTime::buildConfigurationForm in RNG - Events and Registrations 8.2
Same name and namespace in other branches
- 8 src/Plugin/Condition/CurrentTime.php \Drupal\rng\Plugin\Condition\CurrentTime::buildConfigurationForm()
- 3.x src/Plugin/Condition/CurrentTime.php \Drupal\rng\Plugin\Condition\CurrentTime::buildConfigurationForm()
Form constructor.
Plugin forms are embedded in other forms. In order to know where the plugin form is located in the parent form, #parents and #array_parents must be known, but these are not available during the initial build phase. In order to have these properties available when building the plugin form's elements, let this method return a form element that has a #process callback and build the rest of the form in the callback. By the time the callback is executed, the element's #parents and #array_parents properties will have been set by the form API. For more documentation on #parents and #array_parents, see \Drupal\Core\Render\Element\FormElement.
Parameters
array $form: An associative array containing the initial structure of the plugin form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().
Return value
array The form structure.
Overrides ConditionPluginBase::buildConfigurationForm
1 call to CurrentTime::buildConfigurationForm()
- RuleScheduler::buildConfigurationForm in src/
Plugin/ Condition/ RuleScheduler.php - Form constructor.
1 method overrides CurrentTime::buildConfigurationForm()
- RuleScheduler::buildConfigurationForm in src/
Plugin/ Condition/ RuleScheduler.php - Form constructor.
File
- src/
Plugin/ Condition/ CurrentTime.php, line 39
Class
- CurrentTime
- Evaluates if the current date is before or after the the configured date.
Namespace
Drupal\rng\Plugin\ConditionCode
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
if (is_numeric($this->configuration['date'])) {
$date = DrupalDateTime::createFromTimestamp($this
->getDate());
}
else {
$date = new DrupalDateTime();
}
// Add administrative comment publishing options.
$form['date'] = [
'#type' => 'datetime',
'#date_date_element' => 'date',
'#title' => $this
->t('Date'),
'#default_value' => $date,
'#size' => 20,
'#weight' => 50,
];
$form['enable'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Enable this condition?'),
'#default_value' => $this
->getConfiguration()['enable'],
];
$form['negate'] = [
'#type' => 'radios',
'#title' => $this
->t('Timing'),
'#description' => $this
->t('Condition will be true if the time when evaluating this condition is before or after the date.'),
'#options' => [
0 => $this
->t('After this date'),
1 => $this
->t('Before this date'),
],
'#default_value' => (int) $this
->isNegated(),
'#weight' => 100,
];
return $form;
}