You are here

public function DatetimeElementFormTest::datetimeTimeCallbackTrusted in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Datetime/DatetimeElementFormTest.php \Drupal\KernelTests\Core\Datetime\DatetimeElementFormTest::datetimeTimeCallbackTrusted()

File

core/tests/Drupal/KernelTests/Core/Datetime/DatetimeElementFormTest.php, line 65

Class

DatetimeElementFormTest
Tests DatetimeElement functionality.

Namespace

Drupal\KernelTests\Core\Datetime

Code

public function datetimeTimeCallbackTrusted(array &$element, FormStateInterface $form_state, DrupalDateTime $date = NULL) {
  $element['timeCallbackExecuted'] = [
    '#value' => TRUE,
  ];
  $form_state
    ->set('timeCallbackExecuted', TRUE);
}