You are here

public function BootstrapDateTimeWidget::formElement in Bootstrap DateTime Picker 2.0.x

Returns the form for a single field widget.

Field widget form elements should be based on the passed-in $element, which contains the base form element properties derived from the field configuration.

The BaseWidget methods will set the weight, field name and delta values for each form element. If there are multiple values for this field, the formElement() method will be called as many times as needed.

Other modules may alter the form element provided by this function using hook_field_widget_single_element_form_alter() or hook_field_widget_single_element_WIDGET_TYPE_form_alter().

The FAPI element callbacks (such as #process, #element_validate, #value_callback, etc.) used by the widget do not have access to the original $field_definition passed to the widget's constructor. Therefore, if any information is needed from that definition by those callbacks, the widget implementing this method, or a hook_field_widget[_WIDGET_TYPE]_form_alter() implementation, must extract the needed properties from the field definition and set them as ad-hoc $element['#custom'] properties, for later use by its element callbacks.

Parameters

\Drupal\Core\Field\FieldItemListInterface $items: Array of default values for this field.

int $delta: The order of this item in the array of sub-elements (0, 1, 2, etc.).

array $element: A form element array containing basic properties for the widget:

  • #field_parents: The 'parents' space for the field in the form. Most widgets can simply overlook this property. This identifies the location where the field values are placed within $form_state->getValues(), and is used to access processing information for the field through the getWidgetState() and setWidgetState() methods.
  • #title: The sanitized element label for the field, ready for output.
  • #description: The sanitized element description for the field, ready for output.
  • #required: A Boolean indicating whether the element value is required; for required multiple value fields, only the first widget's values are required.
  • #delta: The order of this item in the array of sub-elements; see $delta above.

array $form: The form structure where widgets are being attached to. This might be a full form structure, or a sub-element of a larger form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form elements for a single widget for this field.

Overrides DateTimeWidgetBase::formElement

See also

hook_field_widget_single_element_form_alter()

hook_field_widget_single_element_WIDGET_TYPE_form_alter()

File

src/Plugin/Field/FieldWidget/BootstrapDateTimeWidget.php, line 235

Class

BootstrapDateTimeWidget
Plugin implementation of the BootstrapDateTimeWidget widget.

Namespace

Drupal\bootstrap_datetime_picker\Plugin\Field\FieldWidget

Code

public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
  $element = parent::formElement($items, $delta, $element, $form, $form_state);

  // Field type.
  $element['value'] = [
    '#title' => $element['#title'],
    '#type' => 'bootstrap_date_time',
    '#date_timezone' => date_default_timezone_get(),
    '#default_value' => NULL,
    '#date_type' => NULL,
    '#required' => $element['#required'],
  ];

  // Identify the type of date and time elements to use.
  switch ($this
    ->getFieldSetting('datetime_type')) {
    case DateTimeItem::DATETIME_TYPE_DATE:

      // A date-only field should have no timezone conversion performed, so
      // use the same timezone as for storage.
      $element['value']['#date_timezone'] = DateTimeItemInterface::STORAGE_TIMEZONE;

      // If field is date only, use default time format.
      $format = DateTimeItemInterface::DATE_STORAGE_FORMAT;

      // Type of the field.
      $element['value']['#date_type'] = $this
        ->getFieldSetting('datetime_type');
      break;
    default:

      // Type of the field.
      $element['value']['#date_type'] = $this
        ->getFieldSetting('datetime_type');

      // Assign the time format, because time will be saved in 24hrs format
      // in database.
      $format = $this
        ->getSetting('hour_format') == '12h' ? 'Y-m-d h:i:s A' : 'Y-m-d H:i:s';
      break;
  }
  if ($items[$delta]->date) {
    $date = $items[$delta]->date;

    // The date was created and verified during field_load(), so it is safe to
    // use without further inspection.
    if ($this
      ->getFieldSetting('datetime_type') == DateTimeItem::DATETIME_TYPE_DATE) {

      // A date without time will pick up the current time, use the default
      // time.
      $date
        ->setDefaultDateTime();
    }
    $date
      ->setTimezone(new \DateTimeZone($element['value']['#date_timezone']));

    // Manual define form for input field.
    $element['value']['#default_value'] = $date
      ->format($format);
  }
  $element['value']['#wrapper_class'] = $this
    ->getSetting('wrapper_class');
  $element['value']['#column_size_class'] = $this
    ->getSetting('column_size_class');
  $element['value']['#hour_format'] = $this
    ->getSetting('hour_format');
  $element['value']['#allow_times'] = $this
    ->getSetting('allow_times');
  $element['value']['#disable_days'] = $this
    ->getSetting('disable_days');
  $element['value']['#exclude_date'] = $this
    ->getSetting('exclude_date');
  $element['value']['#description'] = $this
    ->getFilteredDescription();
  return $element;
}