View source
<?php
namespace Drupal\yamlform\Plugin\YamlFormElement;
use Drupal\Component\Serialization\Json;
use Drupal\Core\Datetime\Entity\DateFormat;
use Drupal\Core\Form\FormStateInterface;
use Drupal\yamlform\YamlFormElementBase;
use Drupal\yamlform\YamlFormSubmissionInterface;
abstract class DateBase extends YamlFormElementBase {
public function getDefaultProperties() {
return [
'min' => '',
'max' => '',
] + parent::getDefaultProperties();
}
public function prepare(array &$element, YamlFormSubmissionInterface $yamlform_submission) {
$element['#theme_wrappers'] = [
'form_element',
];
if (isset($element['#states'])) {
$element['#attached']['library'][] = 'core/drupal.states';
$element['#wrapper_attributes']['data-drupal-states'] = Json::encode($element['#states']);
}
parent::prepare($element, $yamlform_submission);
$this
->parseInputFormat($element, '#default_value');
$this
->parseInputFormat($element, '#min');
$this
->parseInputFormat($element, '#max');
if (!empty($element['#min'])) {
$element['#attributes']['min'] = $element['#min'];
}
if (!empty($element['#max'])) {
$element['#attributes']['max'] = $element['#max'];
}
$element['#element_validate'][] = [
get_class($this),
'validateDate',
];
}
public function formatText(array &$element, $value, array $options = []) {
$timestamp = strtotime($value);
if (empty($timestamp)) {
return $value;
}
$format = $this
->getFormat($element) ?: 'html_' . $this
->getDateType($element);
if (DateFormat::load($format)) {
return \Drupal::service('date.formatter')
->format($timestamp, $format);
}
else {
return date($format, $timestamp);
}
}
public function getFormat(array $element) {
if (isset($element['#format'])) {
return $element['#format'];
}
else {
return parent::getFormat($element);
}
}
public function getDefaultFormat() {
return 'fallback';
}
public function getFormats() {
$formats = parent::getFormats();
$date_formats = DateFormat::loadMultiple();
foreach ($date_formats as $date_format) {
$formats[$date_format
->id()] = $date_format
->label();
}
return $formats;
}
public function buildExportRecord(array $element, $value, array $export_options) {
$element['#format'] = $this
->getDateType($element) === 'datetime' ? 'Y-m-d H:i:s' : 'Y-m-d';
return [
$this
->formatText($element, $value, $export_options),
];
}
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$form['element']['default_value']['#description'] .= '<br />' . $this
->t('Accepts any date in any <a href="https://www.gnu.org/software/tar/manual/html_chapter/tar_7.html#Date-input-formats">GNU Date Input Format</a>. Strings such as today, +2 months, and Dec 9 2004 are all valid.');
$form['display']['format']['#type'] = 'yamlform_select_other';
$form['display']['format']['#other__option_label'] = $this
->t('Custom date format...');
$form['display']['format']['#other__description'] = $this
->t('A user-defined date format. See the <a href="http://php.net/manual/function.date.php">PHP manual</a> for available options.');
$form['date'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Date settings'),
];
$form['date']['min'] = [
'#type' => 'textfield',
'#title' => $this
->t('Min'),
'#description' => $this
->t('Specifies the minimum date.') . '<br />' . $this
->t('Accepts any date in any <a href="https://www.gnu.org/software/tar/manual/html_chapter/tar_7.html#Date-input-formats">GNU Date Input Format</a>. Strings such as today, +2 months, and Dec 9 2004 are all valid.'),
'#weight' => 10,
];
$form['date']['max'] = [
'#type' => 'textfield',
'#title' => $this
->t('Max'),
'#description' => $this
->t('Specifies the maximum date.') . '<br />' . $this
->t('Accepts any date in any <a href="https://www.gnu.org/software/tar/manual/html_chapter/tar_7.html#Date-input-formats">GNU Date Input Format</a>. Strings such as today, +2 months, and Dec 9 2004 are all valid.'),
'#weight' => 10,
];
return $form;
}
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
$properties = $this
->getConfigurationFormProperties($form, $form_state);
if ($properties['#default_value'] && strtotime($properties['#default_value']) === FALSE) {
$this
->setInputFormatError($form['properties']['element']['default_value'], $form_state);
}
$input_formats = [
'min',
'max',
];
foreach ($input_formats as $input_format) {
if (!empty($properties["#{$input_format}"]) && strtotime($properties["#{$input_format}"]) === FALSE) {
$this
->setInputFormatError($form['properties']['date'][$input_format], $form_state);
}
}
parent::validateConfigurationForm($form, $form_state);
}
protected function getDateType(array $element) {
switch ($element['#type']) {
case 'datelist':
return isset($element['#date_part_order']) && !in_array('hour', $element['#date_part_order']) ? 'date' : 'datetime';
case 'datetime':
return 'datetime';
case 'date':
default:
return 'date';
}
}
protected function parseInputFormat(array &$element, $property) {
if (!isset($element[$property])) {
return;
}
$timestamp = strtotime($element[$property]);
if ($timestamp === FALSE) {
$element[$property] = NULL;
}
else {
$element[$property] = \Drupal::service('date.formatter')
->format($timestamp, 'html_' . $this
->getDateType($element));
}
}
protected function setInputFormatError(array $element, FormStateInterface $form_state) {
$t_args = [
'@title' => $element['#title'] ?: $element['#key'],
];
$form_state
->setError($element, $this
->t('The @title could not be interpreted in <a href="https://www.gnu.org/software/tar/manual/html_chapter/tar_7.html#Date-input-formats">GNU Date Input Format</a>.', $t_args));
}
public static function validateDate(&$element, FormStateInterface $form_state, &$complete_form) {
$value = $element['#value'];
if (is_array($value)) {
if ($datetime = $value['object']) {
$value = $datetime
->format('c');
}
else {
$value = '';
}
$form_state
->setValueForElement($element, $value);
}
if ($value === '') {
return;
}
$name = empty($element['#title']) ? $element['#parents'][0] : $element['#title'];
$date = date_parse($value);
if ($date["error_count"] || !checkdate($date["month"], $date["day"], $date["year"])) {
$form_state
->setError($element, t('%name must be a valid date.', [
'%name' => $name,
]));
}
$time = strtotime($value);
$date_date_format = !empty($element['#date_date_format']) ? $element['#date_date_format'] : DateFormat::load('html_date')
->getPattern();
if (isset($element['#min'])) {
$min = strtotime($element['#min']);
if ($time < $min) {
$form_state
->setError($element, t('%name must be on or after %min.', [
'%name' => $name,
'%min' => date($date_date_format, $min),
]));
}
}
if (isset($element['#max'])) {
$max = strtotime($element['#max']);
if ($time > $max) {
$form_state
->setError($element, t('%name must be on or before %max.', [
'%name' => $name,
'%max' => date($date_date_format, $max),
]));
}
}
}
}