class DatexDateList in Datex 8
Plugin annotation
@FormElement("datelist");
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Render\Element\RenderElement implements ElementInterface
- class \Drupal\Core\Render\Element\FormElement implements FormElementInterface
- class \Drupal\Core\Datetime\Element\DateElementBase
- class \Drupal\Core\Datetime\Element\Datelist
- class \Drupal\datex\Element\DatexDateList
- class \Drupal\Core\Datetime\Element\Datelist
- class \Drupal\Core\Datetime\Element\DateElementBase
- class \Drupal\Core\Render\Element\FormElement implements FormElementInterface
- class \Drupal\Core\Render\Element\RenderElement implements ElementInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DatexDateList
File
- src/
Element/ DatexDateList.php, line 15
Namespace
Drupal\datex\ElementView source
class DatexDateList extends Datelist {
public static function valueCallback(&$element, $input, FormStateInterface $form_state) {
$parts = $element['#date_part_order'];
$increment = $element['#date_increment'];
$date = NULL;
if ($input !== FALSE) {
$return = $input;
if (empty(static::checkEmptyInputs($input, $parts))) {
if (isset($input['ampm'])) {
if ($input['ampm'] == 'pm' && $input['hour'] < 12) {
$input['hour'] += 12;
}
elseif ($input['ampm'] == 'am' && $input['hour'] == 12) {
$input['hour'] -= 12;
}
unset($input['ampm']);
}
$timezone = !empty($element['#date_timezone']) ? $element['#date_timezone'] : NULL;
try {
$date = DrupalDateTime::createFromArray($input, $timezone);
} catch (\Exception $e) {
$form_state
->setError($element, t('Selected combination of day and month is not valid.'));
}
if ($date instanceof DrupalDateTime && !$date
->hasErrors()) {
static::incrementRound($date, $increment);
}
}
}
else {
$return = array_fill_keys($parts, '');
if (!empty($element['#default_value'])) {
$date = $element['#default_value'];
if ($date instanceof DrupalDateTime && !$date
->hasErrors()) {
static::incrementRound($date, $increment);
foreach ($parts as $part) {
switch ($part) {
case 'day':
$format = 'j';
break;
case 'month':
$format = 'n';
break;
case 'year':
$format = 'Y';
break;
case 'hour':
$format = in_array('ampm', $element['#date_part_order']) ? 'g' : 'G';
break;
case 'minute':
$format = 'i';
break;
case 'second':
$format = 's';
break;
case 'ampm':
$format = 'a';
break;
default:
$format = '';
}
$return[$part] = $date
->format($format);
}
}
}
}
$timezone = isset($timezone) ? $timezone : NULL;
$calendar = datex_factory($timezone, 'en');
if ($calendar && $date && $date
->format('Y') < 1600) {
$ok = $calendar
->parse($date
->format('Y m d H i s'), 'Y m d H i s');
if (!$ok) {
$form_state
->setError($element, t('Selected combination of day and month is invalid.'));
}
else {
$date = DrupalDateTime::createFromTimestamp($calendar
->getTimestamp(), $timezone);
}
}
$return['object'] = $date;
return $return;
}
public static function processDatelist(&$element, FormStateInterface $form_state, &$complete_form) {
// The value callback has populated the #value array.
$date = !empty($element['#value']['object']) ? $element['#value']['object'] : NULL;
// Set a fallback timezone.
if ($date instanceof DrupalDateTime) {
$element['#date_timezone'] = $date
->getTimezone()
->getName();
}
elseif (!empty($element['#timezone'])) {
$element['#date_timezone'] = $element['#date_timezone'];
}
else {
$element['#date_timezone'] = drupal_get_user_timezone();
}
$cal = datex_factory($element['#timezone'], 'en');
if (!$cal) {
return parent::processDatelist($element, $form_state, $complete_form);
}
$e_cal = datex_factory($element['#timezone'], 'en', 'gregorian');
if ($date) {
$date = DatexDrupalDateTime::convert($date);
}
// Load translated date part labels from the appropriate calendar plugin.
$date_helper = new DateHelper();
$element['#tree'] = TRUE;
// Determine the order of the date elements.
$order = !empty($element['#date_part_order']) ? $element['#date_part_order'] : [
'year',
'month',
'day',
];
$text_parts = !empty($element['#date_text_parts']) ? $element['#date_text_parts'] : [];
// Output multi-selector for date.
foreach ($order as $part) {
switch ($part) {
case 'day':
$options = $date_helper
->days($element['#required']);
$format = 'j';
$title = t('Day');
break;
case 'month':
$fac = datex_factory();
$options = $fac
->listOptions('monthNames', $element['#required']);
$format = 'n';
$title = t('Month');
break;
case 'year':
$range = static::datexDatetimeRangeYears($element['#date_year_range'], $date, $cal
->getCalendarName());
$min = $range[0];
$max = $range[1];
$cal
->setTimestamp(REQUEST_TIME);
$rng = range(empty($min) ? intval($cal
->format('Y') - 3) : $min, empty($max) ? intval($cal
->format('Y') + 3) : $max);
$rng = array_combine($rng, $rng);
$options = !$element['#required'] ? [
'' => '',
] + $rng : $rng;
$format = 'Y';
$title = t('Year');
break;
case 'hour':
$format = in_array('ampm', $element['#date_part_order']) ? 'g' : 'G';
$options = $date_helper
->hours($format, $element['#required']);
$title = t('Hour');
break;
case 'minute':
$format = 'i';
$options = $date_helper
->minutes($format, $element['#required'], $element['#date_increment']);
$title = t('Minute');
break;
case 'second':
$format = 's';
$options = $date_helper
->seconds($format, $element['#required'], $element['#date_increment']);
$title = t('Second');
break;
case 'ampm':
$format = 'a';
$options = $date_helper
->ampm($element['#required']);
$title = t('AM/PM');
break;
default:
$format = '';
$options = [];
$title = '';
}
$default = isset($element['#value'][$part]) && trim($element['#value'][$part]) != '' ? $element['#value'][$part] : '';
$value = $date instanceof DrupalDateTime && !$date
->hasErrors() ? $date
->format($format) : $default;
if (!empty($value) && $part != 'ampm') {
$value = intval($value);
}
$element['#attributes']['title'] = $title;
$element[$part] = [
'#type' => in_array($part, $text_parts) ? 'textfield' : 'select',
'#title' => $title,
'#title_display' => 'invisible',
'#value' => $value,
'#attributes' => $element['#attributes'],
'#options' => $options,
'#required' => $element['#required'],
'#error_no_message' => FALSE,
'#empty_option' => $title,
];
}
// Allows custom callbacks to alter the element.
if (!empty($element['#date_date_callbacks'])) {
foreach ($element['#date_date_callbacks'] as $callback) {
if (function_exists($callback)) {
$callback($element, $form_state, $date);
}
}
}
return $element;
}
public static function datetimeRangeYears($string, $date = NULL) {
return static::datexDatetimeRangeYears($string, $date);
}
private static function datexYears(DatexInterface $cal, $min, $max, $required) {
$cal
->setTimestamp(REQUEST_TIME);
$rng = range(empty($min) ? intval($cal
->format('Y') - 3) : $min, empty($max) ? intval($cal
->format('Y') + 3) : $max);
$rng = array_combine($rng, $rng);
$options = !$required ? [
'' => '',
] + $rng : $rng;
}
public static function datexDatetimeRangeYears($string, $date, $calendar_name = '') {
if ($calendar_name === 'gregorian') {
return parent::datetimeRangeYears($string, $date);
}
$calendar = datex_factory(NULL, 'en', $calendar_name);
if (!$calendar) {
return parent::datetimeRangeYears($string, $date);
}
$datetime = new DatexDrupalDateTime();
$this_year = $calendar
->format('Y', [
'langcode' => 'en',
]);
list($min_year, $max_year) = explode(':', $string);
// Valid patterns would be -5:+5, 0:+1, 2008:2010.
$plus_pattern = '@[\\+|\\-][0-9]{1,4}@';
$year_pattern = '@^[0-9]{4}@';
if (!preg_match($year_pattern, $min_year, $matches)) {
if (preg_match($plus_pattern, $min_year, $matches)) {
$min_year = $this_year + $matches[0];
}
else {
$min_year = $this_year;
}
}
else {
try {
$calendar
->xSetDate($min_year, 1, 1);
$min_year = $calendar
->format('Y');
} catch (\Exception $e) {
$min_year = 0;
}
}
if (!preg_match($year_pattern, $max_year, $matches)) {
if (preg_match($plus_pattern, $max_year, $matches)) {
$max_year = $this_year + $matches[0];
}
else {
$max_year = $this_year;
}
}
else {
try {
$calendar
->xSetDate($max_year, 1, 1);
$max_year = $calendar
->format('Y');
} catch (\Exception $e) {
$max_year = 0;
}
}
$min_year = intval($min_year);
$max_year = intval($max_year);
// We expect the $min year to be less than the $max year. Some custom values
// for -99:+99 might not obey that.
if ($min_year > $max_year) {
$temp = $max_year;
$max_year = $min_year;
$min_year = $temp;
}
// If there is a current value, stretch the range to include it.
if ($date instanceof DrupalDateTime) {
$calendar
->setTimestamp($date
->getTimestamp());
$value_year = $calendar
->format('Y');
}
else {
$value_year = '';
}
if (!empty($value_year)) {
$min_year = min(intval($value_year), $min_year);
$max_year = max(intval($value_year), $max_year);
}
return [
$min_year,
$max_year,
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DateElementBase:: |
protected static | function | Returns the most relevant title of a datetime element. | |
Datelist:: |
protected static | function | Checks the input array for empty values. | |
Datelist:: |
public | function |
Returns the element properties for this element. Overrides ElementInterface:: |
|
Datelist:: |
protected static | function | Rounds minutes and seconds to nearest requested value. | |
Datelist:: |
public static | function | Validation callback for a datelist element. | |
DatexDateList:: |
public static | function |
Specifies the start and end year to use as a date range. Overrides DateElementBase:: |
|
DatexDateList:: |
public static | function | ||
DatexDateList:: |
private static | function | ||
DatexDateList:: |
public static | function |
Expands a date element into an array of individual elements. Overrides Datelist:: |
|
DatexDateList:: |
public static | function |
Validates the date type to adjust 12 hour time and prevent invalid dates.
If the date is valid, the date is set in the form. Overrides Datelist:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormElement:: |
public static | function | Adds autocomplete functionality to elements. | |
FormElement:: |
public static | function | #process callback for #pattern form element property. | |
FormElement:: |
public static | function | #element_validate callback for #pattern form element property. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
RenderElement:: |
public static | function | Adds Ajax information about an element to communicate with JavaScript. | |
RenderElement:: |
public static | function | Adds members of this group as actual elements for rendering. | |
RenderElement:: |
public static | function | Form element processing handler for the #ajax form property. | 1 |
RenderElement:: |
public static | function | Arranges elements into groups. | |
RenderElement:: |
public static | function |
Sets a form element's class attribute. Overrides ElementInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |