You are here

public function SingleDateTimeBase::settingsForm in Single DateTimePicker 8

Returns a form to configure settings for the widget.

Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase to allow administrators to configure the widget. The field_ui module takes care of handling submitted form values.

Parameters

array $form: The form where the settings form is being included in.

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

Return value

array The form definition for the widget settings.

Overrides WidgetBase::settingsForm

File

src/Plugin/Field/FieldWidget/SingleDateTimeBase.php, line 74

Class

SingleDateTimeBase
Base class for SingleDateTime widget types.

Namespace

Drupal\single_datetime\Plugin\Field\FieldWidget

Code

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_seconds'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Seconds default 00'),
    '#description' => $this
      ->t('Select if you want to set the seconds default 00.'),
    '#default_value' => $this
      ->getSetting('allow_seconds'),
    '#required' => FALSE,
  ];
  $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['allowed_hours'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Allowed hours'),
    '#description' => $this
      ->t('Specify allowed hours on time picker. Leave empty for no restrictions. Enter hours in following format of number, etc: 8,9,10,11,12,13,14,15,16,17. Separate by comma. This is used in combination with minutes granularity.'),
    '#default_value' => $this
      ->getSetting('allowed_hours'),
    '#required' => FALSE,
  ];
  $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 d.m.Y etc. 31.12.2018. Each date in new line. 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,
  ];
  $elements['inline'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Render inline'),
    '#description' => $this
      ->t('Select if you want to render the widget inline.'),
    '#default_value' => $this
      ->getSetting('inline'),
    '#required' => FALSE,
  ];
  $elements['mask'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Use mask'),
    '#description' => $this
      ->t('Use mask for input. Example __.__.____'),
    '#default_value' => $this
      ->getSetting('mask'),
    '#required' => FALSE,
  ];
  $elements['datetimepicker_theme'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Theme'),
    '#description' => $this
      ->t('Setting a color scheme. Now only supported default and dark theme'),
    '#options' => [
      'default' => $this
        ->t('Default'),
      'dark' => $this
        ->t('Dark'),
    ],
    '#default_value' => $this
      ->getSetting('datetimepicker_theme'),
    '#required' => FALSE,
  ];
  $elements['start_date'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Start date'),
    '#description' => $this
      ->t('Initial date to display when the input has no value and the picker is opened', [
      ':external' => 'https://xdsoft.net/jqplugins/datetimepicker/',
    ]),
    '#default_value' => $this
      ->getSetting('start_date'),
    '#required' => FALSE,
  ];
  $elements['min_date'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Set a limit to the minimum date/time allowed to pick.'),
    '#description' => $this
      ->t('Examples: \'0\' for now, \'+1970/01/02\' for tomorrow, \'12:00\' for time, \'13:45:34\',formatTime:\'H:i:s\'. <a href=":external">More info</a>', [
      ':external' => 'https://xdsoft.net/jqplugins/datetimepicker/',
    ]),
    '#default_value' => $this
      ->getSetting('min_date'),
    '#required' => FALSE,
  ];
  $elements['max_date'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Set a limit to the maximum date/time allowed to pick.'),
    '#description' => $this
      ->t('Examples: \'0\' for now, \'+1970/01/02\' for tomorrow, \'12:00\' for time, \'13:45:34\',formatTime:\'H:i:s\'. <a href=":external">More info</a>.', [
      ':external' => 'https://xdsoft.net/jqplugins/datetimepicker/',
    ]),
    '#default_value' => $this
      ->getSetting('max_date'),
    '#required' => FALSE,
  ];
  $elements['year_start'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Start year'),
    '#description' => $this
      ->t('Start value for fast Year selector - used only for selector'),
    '#default_value' => $this
      ->getSetting('year_start'),
    '#required' => FALSE,
  ];
  $elements['year_end'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('End year'),
    '#description' => $this
      ->t('End value for fast Year selector - used only for selector'),
    '#default_value' => $this
      ->getSetting('year_end'),
    '#required' => FALSE,
  ];
  $elements['allow_blank'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Allow blank'),
    '#description' => $this
      ->t('Allow deleting the value to unset a date.'),
    '#default_value' => $this
      ->getSetting('allow_blank'),
    '#required' => FALSE,
  ];
  return $elements;
}