View source
<?php
namespace Drupal\bootstrap_datetime_picker\Plugin\Field\FieldWidget;
use Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\datetime_range\Plugin\Field\FieldWidget\DateRangeWidgetBase;
use Drupal\datetime_range\Plugin\Field\FieldType\DateRangeItem;
use Drupal\datetime\Plugin\Field\FieldType\DateTimeItem;
class BootstrapDateRangeWidget extends DateRangeWidgetBase {
public static function defaultSettings() {
return [
'hour_format' => '24h',
'allow_times' => '15',
'disable_days' => [],
'exclude_date' => '',
];
}
public function settingsForm(array $form, FormStateInterface $form_state) {
$elements = [];
$elements['hour_format'] = [
'#type' => 'select',
'#title' => $this
->t('Hours Format'),
'#description' => $this
->t('Select the hours format'),
'#options' => [
'12h' => $this
->t('12 Hours'),
'24h' => $this
->t('24 Hours'),
],
'#default_value' => $this
->getSetting('hour_format'),
'#required' => TRUE,
];
$elements['allow_times'] = [
'#type' => 'select',
'#title' => $this
->t('Minutes granularity'),
'#description' => $this
->t('Select granularity for minutes in calendar'),
'#options' => [
'5' => $this
->t('5 minutes'),
'10' => $this
->t('10 minutes'),
'15' => $this
->t('15 minutes'),
'30' => $this
->t('30 minutes'),
'60' => $this
->t('60 minutes'),
],
'#default_value' => $this
->getSetting('allow_times'),
'#required' => TRUE,
];
$elements['disable_days'] = [
'#type' => 'checkboxes',
'#title' => $this
->t('Disable specific days in week'),
'#description' => $this
->t('Select days which are disabled in calendar, etc. weekends or just Friday'),
'#options' => [
'1' => $this
->t('Monday'),
'2' => $this
->t('Tuesday'),
'3' => $this
->t('Wednesday'),
'4' => $this
->t('Thursday'),
'5' => $this
->t('Friday'),
'6' => $this
->t('Saturday'),
'7' => $this
->t('Sunday'),
],
'#default_value' => $this
->getSetting('disable_days'),
'#required' => FALSE,
];
$elements['exclude_date'] = [
'#type' => 'textarea',
'#title' => $this
->t('Disable specific dates from calendar'),
'#description' => $this
->t('Enter days in following format MM/DD/YY e.g. 03/07/2018. Separate multiple dates with comma. This is used for specific dates, if you want to disable all weekends use settings above, not this field.'),
'#default_value' => $this
->getSetting('exclude_date'),
'#required' => FALSE,
];
return $elements;
}
public function settingsSummary() {
$summary = [];
$summary[] = t('Hours Format: @hour_format', [
'@hour_format' => $this
->getSetting('hour_format'),
]);
$summary[] = t('Minutes Granularity: @allow_times', [
'@allow_times' => $this
->getSetting('allow_times'),
]);
$options = [
'1' => $this
->t('Monday'),
'2' => $this
->t('Tuesday'),
'3' => $this
->t('Wednesday'),
'4' => $this
->t('Thursday'),
'5' => $this
->t('Friday'),
'6' => $this
->t('Saturday'),
'7' => $this
->t('Sunday'),
];
$disabled_days = [];
foreach ($this
->getSetting('disable_days') as $key => $value) {
if (!empty($value)) {
$disabled_days[] = $options[$value];
}
}
$disabled_days = implode(',', $disabled_days);
$summary[] = t('Disabled days: @disabled_days', [
'@disabled_days' => !empty($disabled_days) ? $disabled_days : t('None'),
]);
$summary[] = t('Disabled dates: @disabled_dates', [
'@disabled_dates' => !empty($this
->getSetting('exclude_date')) ? $this
->getSetting('exclude_date') : t('None'),
]);
return $summary;
}
public function massageFormValues(array $values, array $form, FormStateInterface $form_state) {
foreach ($values as &$item) {
if (!empty($item['value'])) {
$start_date = new DrupalDateTime($item['value']);
switch ($this
->getFieldSetting('datetime_type')) {
case DateRangeItem::DATETIME_TYPE_DATE:
$start_date
->setDefaultDateTime();
$format = DateTimeItemInterface::DATE_STORAGE_FORMAT;
break;
default:
$format = DateTimeItemInterface::DATETIME_STORAGE_FORMAT;
break;
}
$start_date
->setTimezone(new \DateTimezone(DateTimeItemInterface::STORAGE_TIMEZONE));
$item['value'] = $start_date
->format($format);
}
if (!empty($item['end_value'])) {
$end_date = new DrupalDateTime($item['end_value']);
switch ($this
->getFieldSetting('datetime_type')) {
case DateRangeItem::DATETIME_TYPE_DATE:
$end_date
->setDefaultDateTime();
$format = DateTimeItemInterface::DATE_STORAGE_FORMAT;
break;
default:
$format = DateTimeItemInterface::DATETIME_STORAGE_FORMAT;
break;
}
$end_date
->setTimezone(new \DateTimezone(DateTimeItemInterface::STORAGE_TIMEZONE));
$item['end_value'] = $end_date
->format($format);
}
}
return $values;
}
protected $dateStorage;
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, array $third_party_settings, EntityStorageInterface $date_storage) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $third_party_settings);
$this->dateStorage = $date_storage;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['third_party_settings'], $container
->get('entity_type.manager')
->getStorage('date_format'));
}
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$element = parent::formElement($items, $delta, $element, $form, $form_state);
$element['value'] = [
'#title' => $this
->t('Start date'),
'#type' => 'bootstrap_date_time',
'#date_timezone' => date_default_timezone_get(),
'#default_value' => NULL,
'#date_type' => NULL,
'#required' => $element['#required'],
];
$element['end_value'] = [
'#title' => $this
->t('End date'),
'#type' => 'bootstrap_date_time',
'#date_timezone' => date_default_timezone_get(),
'#default_value' => NULL,
'#date_type' => NULL,
'#required' => $element['#required'],
] + $element['value'];
switch ($this
->getFieldSetting('datetime_type')) {
case DateRangeItem::DATETIME_TYPE_DATE:
$element['value']['#date_timezone'] = DateTimeItemInterface::STORAGE_TIMEZONE;
$element['end_value']['#date_timezone'] = DateTimeItemInterface::STORAGE_TIMEZONE;
$format = DateTimeItemInterface::DATE_STORAGE_FORMAT;
$element['value']['#date_type'] = $this
->getFieldSetting('datetime_type');
$element['end_value']['#date_type'] = $this
->getFieldSetting('datetime_type');
break;
default:
$element['value']['#date_type'] = $this
->getFieldSetting('datetime_type');
$element['end_value']['#date_type'] = $this
->getFieldSetting('datetime_type');
$format = $this
->getSetting('hour_format') == '12h' ? 'Y-m-d h:i:s A' : 'Y-m-d H:i:s';
break;
}
if ($items[$delta]->start_date) {
$start_date = $items[$delta]->start_date;
if ($this
->getFieldSetting('datetime_type') == DateTimeItem::DATETIME_TYPE_DATE) {
$start_date
->setDefaultDateTime();
}
$start_date
->setTimezone(new \DateTimeZone($element['value']['#date_timezone']));
$element['value']['#default_value'] = $start_date
->format($format);
}
if ($items[$delta]->end_date) {
$end_date = $items[$delta]->end_date;
if ($this
->getFieldSetting('datetime_type') == DateTimeItem::DATETIME_TYPE_DATE) {
$end_date
->setDefaultDateTime();
}
$end_date
->setTimezone(new \DateTimeZone($element['end_value']['#date_timezone']));
$element['end_value']['#default_value'] = $end_date
->format($format);
}
$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['end_value']['#hour_format'] = $this
->getSetting('hour_format');
$element['end_value']['#allow_times'] = $this
->getSetting('allow_times');
$element['end_value']['#disable_days'] = $this
->getSetting('disable_days');
$element['end_value']['#exclude_date'] = $this
->getSetting('exclude_date');
return $element;
}
}