View source
<?php
namespace Drupal\bootstrap_datetime_picker\Plugin\Field\FieldWidget;
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\Plugin\Field\FieldWidget\DateTimeWidgetBase;
use Drupal\datetime\Plugin\Field\FieldType\DateTimeItem;
use Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface;
class BootstrapDateTimeWidget extends DateTimeWidgetBase {
public static function defaultSettings() {
return [
'wrapper_class' => 'container',
'column_size_class' => 'col-sm-6',
'hour_format' => '24h',
'allow_times' => '15',
'disable_days' => [],
'exclude_date' => '',
];
}
public function settingsForm(array $form, FormStateInterface $form_state) {
$elements = [];
$elements['wrapper_class'] = [
'#type' => 'select',
'#title' => $this
->t('Wrapper Class'),
'#options' => [
'container' => $this
->t('Container'),
'fluid-container' => $this
->t('Fluid Container'),
],
'#description' => $this
->t('Select the wrapper class. Check https://getbootstrap.com/docs/4.3/layout/overview/'),
'#default_value' => $this
->getSetting('wrapper_class'),
];
$elements['column_size_class'] = [
'#type' => 'select',
'#title' => $this
->t('Column Size'),
'#description' => $this
->t('Select the column size based on bootstrap\'s grid system. Check https://getbootstrap.com/docs/4.0/layout/grid/'),
'#options' => [
'col-sm-1' => 1,
'col-sm-2' => 2,
'col-sm-3' => 3,
'col-sm-4' => 4,
'col-sm-5' => 5,
'col-sm-6' => 6,
'col-sm-7' => 7,
'col-sm-8' => 8,
'col-sm-9' => 9,
'col-sm-10' => 10,
'col-sm-11' => 11,
'col-sm-12' => 12,
],
'#default_value' => $this
->getSetting('column_size_class'),
];
$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('Wrapper Class: @wrapper_class', [
'@wrapper_class' => $this
->getSetting('wrapper_class'),
]);
$summary[] = t('Column Size: @column_size_class', [
'@column_size_class' => $this
->getSetting('column_size_class'),
]);
$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'])) {
$date = new DrupalDateTime($item['value']);
switch ($this
->getFieldSetting('datetime_type')) {
case DateTimeItem::DATETIME_TYPE_DATE:
$date
->setDefaultDateTime();
$format = DateTimeItemInterface::DATE_STORAGE_FORMAT;
break;
default:
$format = DateTimeItemInterface::DATETIME_STORAGE_FORMAT;
break;
}
$date
->setTimezone(new \DateTimezone(DateTimeItemInterface::STORAGE_TIMEZONE));
$item['value'] = $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' => $element['#title'],
'#type' => 'bootstrap_date_time',
'#date_timezone' => date_default_timezone_get(),
'#default_value' => NULL,
'#date_type' => NULL,
'#required' => $element['#required'],
];
switch ($this
->getFieldSetting('datetime_type')) {
case DateTimeItem::DATETIME_TYPE_DATE:
$element['value']['#date_timezone'] = DateTimeItemInterface::STORAGE_TIMEZONE;
$format = DateTimeItemInterface::DATE_STORAGE_FORMAT;
$element['value']['#date_type'] = $this
->getFieldSetting('datetime_type');
break;
default:
$element['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]->date) {
$date = $items[$delta]->date;
if ($this
->getFieldSetting('datetime_type') == DateTimeItem::DATETIME_TYPE_DATE) {
$date
->setDefaultDateTime();
}
$date
->setTimezone(new \DateTimeZone($element['value']['#date_timezone']));
$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;
}
}