You are here

TimeRangeWidget.php in Time Field For Drupal 8.x / 9.x 2.x

Same filename and directory in other branches
  1. 8 src/Plugin/Field/FieldWidget/TimeRangeWidget.php

File

src/Plugin/Field/FieldWidget/TimeRangeWidget.php
View source
<?php

namespace Drupal\time_field\Plugin\Field\FieldWidget;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\time_field\Time;

/**
 * Plugin implementation of the 'time_widget' widget.
 *
 * @FieldWidget(
 *   id = "time_range_widget",
 *   label = @Translation("Time range widget"),
 *   field_types = {
 *     "time_range"
 *   }
 * )
 */
class TimeRangeWidget extends WidgetBase {

  /**
   * {@inheritdoc}
   */
  public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
    $element['from'] = [
      '#title' => $this
        ->t('Start time'),
      '#type' => 'time',
    ];
    $element['to'] = [
      '#title' => $this
        ->t('End time'),
      '#type' => 'time',
    ];
    if (is_numeric($items[$delta]->from)) {
      $element['from']['#default_value'] = isset($items[$delta]->from) ? Time::createFromTimestamp($items[$delta]->from)
        ->formatForWidget() : NULL;
    }
    if (is_numeric($items[$delta]->to)) {
      $element['to']['#default_value'] = isset($items[$delta]->to) ? Time::createFromTimestamp($items[$delta]->to)
        ->formatForWidget() : NULL;
    }
    if ($this->fieldDefinition
      ->getFieldStorageDefinition()
      ->getCardinality() == 1) {
      $element += [
        '#type' => 'fieldset',
      ];
    }
    $show_seconds = (bool) $this
      ->getSetting('enabled');
    if ($show_seconds) {
      $element['from']['#attributes']['step'] = $this
        ->getSetting('step');
      $element['to']['#attributes']['step'] = $this
        ->getSetting('step');
    }
    $element['from']['#show_seconds'] = $show_seconds;
    $element['to']['#show_seconds'] = $show_seconds;
    return $element;
  }

  /**
   * {@inheritdoc}
   */
  public static function defaultSettings() {
    return [
      'enabled' => FALSE,
      'step' => 5,
    ] + parent::defaultSettings();
  }

  /**
   * {@inheritdoc}
   */
  public function settingsForm(array $form, FormStateInterface $form_state) {
    return [
      'enabled' => [
        '#type' => 'checkbox',
        '#title' => $this
          ->t('Add seconds parameter to input widget'),
        '#default_value' => $this
          ->getSetting('enabled'),
      ],
      'step' => [
        '#type' => 'textfield',
        '#title' => $this
          ->t('Step to change seconds'),
        '#open' => TRUE,
        '#default_value' => $this
          ->getSetting('step'),
        '#states' => [
          'visible' => [
            ':input[name$="[enabled]"]' => [
              'checked' => TRUE,
            ],
          ],
        ],
      ],
    ] + parent::settingsForm($form, $form_state);
  }

}

Classes

Namesort descending Description
TimeRangeWidget Plugin implementation of the 'time_widget' widget.