abstract class DateBase in YAML Form 8
Provides a base 'date' class.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\yamlform\YamlFormElementBase implements YamlFormElementInterface uses StringTranslationTrait
- class \Drupal\yamlform\Plugin\YamlFormElement\DateBase
- class \Drupal\yamlform\YamlFormElementBase implements YamlFormElementInterface uses StringTranslationTrait
Expanded class hierarchy of DateBase
File
- src/
Plugin/ YamlFormElement/ DateBase.php, line 14
Namespace
Drupal\yamlform\Plugin\YamlFormElementView source
abstract class DateBase extends YamlFormElementBase {
/**
* {@inheritdoc}
*/
public function getDefaultProperties() {
return [
// Form validation.
'min' => '',
'max' => '',
] + parent::getDefaultProperties();
}
/**
* {@inheritdoc}
*/
public function prepare(array &$element, YamlFormSubmissionInterface $yamlform_submission) {
// Don't used 'datetime_wrapper', instead use 'form_element' wrapper.
// Note: Below code must be executed before parent::prepare().
// @see \Drupal\Core\Datetime\Element\Datelist
// @see \Drupal\yamlform\Plugin\YamlFormElement\DateTime
$element['#theme_wrappers'] = [
'form_element',
];
// Must manually process #states.
// @see drupal_process_states().
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);
// Parse #default_value date input format.
$this
->parseInputFormat($element, '#default_value');
// Parse #min and #max date input format.
$this
->parseInputFormat($element, '#min');
$this
->parseInputFormat($element, '#max');
// Override min/max attributes.
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',
];
}
/**
* {@inheritdoc}
*/
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);
}
}
/**
* {@inheritdoc}
*/
public function getFormat(array $element) {
if (isset($element['#format'])) {
return $element['#format'];
}
else {
return parent::getFormat($element);
}
}
/**
* {@inheritdoc}
*/
public function getDefaultFormat() {
return 'fallback';
}
/**
* {@inheritdoc}
*/
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;
}
/**
* {@inheritdoc}
*/
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),
];
}
/**
* {@inheritdoc}
*/
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
// Append supported date input format to #default_value description.
$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.');
// Allow custom date formats to be entered.
$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;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
$properties = $this
->getConfigurationFormProperties($form, $form_state);
// Validate #default_value GNU Date Input Format.
if ($properties['#default_value'] && strtotime($properties['#default_value']) === FALSE) {
$this
->setInputFormatError($form['properties']['element']['default_value'], $form_state);
}
// Validate #min and #max GNU Date Input Format.
$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);
}
/**
* Get the type of date/time element.
*
* @param array $element
* An element.
*
* @return string
* The type of date/time element which be either a 'date' or 'datetime'.
*/
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';
}
}
/**
* Parse GNU Date Input Format.
*
* @param array $element
* An element.
* @param string $property
* The element's date property.
*/
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));
}
}
/**
* Set GNU input format error.
*
* @param array $element
* The property element.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
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));
}
/**
* Form element validation handler for base elements.
*
* Note that #required is validated by _form_validate() already.
*
* @see \Drupal\Core\Render\Element\Number::validateNumber
*/
public static function validateDate(&$element, FormStateInterface $form_state, &$complete_form) {
$value = $element['#value'];
// Convert DrupalDateTime array and object to ISO datetime.
if (is_array($value)) {
/** @var \Drupal\Core\Datetime\DrupalDateTime $datetime */
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'];
// Ensure the input is valid date.
// @see http://stackoverflow.com/questions/10691949/check-if-variable-is-a-valid-date-with-php
$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();
// Ensure that the input is greater than the #min property, if set.
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),
]));
}
}
// Ensure that the input is less than the #max property, if set.
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),
]));
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DateBase:: |
public | function |
Build an element's export row. Overrides YamlFormElementBase:: |
|
DateBase:: |
public | function |
Gets the actual configuration form array to be built. Overrides YamlFormElementBase:: |
3 |
DateBase:: |
public | function |
Format an element's value as plain text. Overrides YamlFormElementBase:: |
|
DateBase:: |
protected | function | Get the type of date/time element. | |
DateBase:: |
public | function |
Get an element's default format name. Overrides YamlFormElementBase:: |
|
DateBase:: |
public | function |
Only a few elements don't inherit these default properties. Overrides YamlFormElementBase:: |
3 |
DateBase:: |
public | function |
Get element's format name by looking for '#format' property, global settings, and finally default settings. Overrides YamlFormElementBase:: |
|
DateBase:: |
public | function |
Get an element's available formats. Overrides YamlFormElementBase:: |
|
DateBase:: |
protected | function | Parse GNU Date Input Format. | |
DateBase:: |
public | function |
Prepare an element to be rendered within a form. Overrides YamlFormElementBase:: |
2 |
DateBase:: |
protected | function | Set GNU input format error. | |
DateBase:: |
public | function |
Form validation handler. Overrides YamlFormElementBase:: |
1 |
DateBase:: |
public static | function | Form element validation handler for base elements. | |
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. | |
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. | |
YamlFormElementBase:: |
protected | property | The configuration factory. | |
YamlFormElementBase:: |
protected | property | The current user. | |
YamlFormElementBase:: |
protected | property | A element info manager. | |
YamlFormElementBase:: |
protected | property | The form element manager. | |
YamlFormElementBase:: |
protected | property | The entity type manager. | |
YamlFormElementBase:: |
protected | property | A logger instance. | |
YamlFormElementBase:: |
protected | property | The token manager. | |
YamlFormElementBase:: |
protected | function | Build an element as text or HTML. | 2 |
YamlFormElementBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Build an element's export header. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Get an element's export options form. Overrides YamlFormElementInterface:: |
4 |
YamlFormElementBase:: |
public | function |
Build an element as HTML element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Build an element as text element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Check element access (rules). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
YamlFormElementBase:: |
public | function |
Display element disabled warning. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Format an element's value as HTML. Overrides YamlFormElementInterface:: |
15 |
YamlFormElementBase:: |
public | function |
Format an element's table column value. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
public | function |
Get an element's admin label (#admin_title, #title or #yamlform_key). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an associative array of element properties from configuration form. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
protected | function | Get configuration property value. | 1 |
YamlFormElementBase:: |
protected | function | Get default base properties used by all elements. | |
YamlFormElementBase:: |
protected | function | Get an element's (sub)inputs selectors as options. | 7 |
YamlFormElementBase:: |
public | function |
Get an element's selectors as options. Overrides YamlFormElementInterface:: |
11 |
YamlFormElementBase:: |
public | function |
Get an element's supported states as options. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an element's default export options. Overrides YamlFormElementInterface:: |
4 |
YamlFormElementBase:: |
public | function |
Retrieves the default properties for the defined element type. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an element's key/name. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get an element's label (#title or #yamlform_key). Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get link to element's API documentation. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get the URL for the element's API documentation. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Gets the label of the plugin instance. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Get related element types. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Get element's table column(s) settings. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Get test value for an element. Overrides YamlFormElementInterface:: |
7 |
YamlFormElementBase:: |
public | function |
Get translatable properties. Overrides YamlFormElementInterface:: |
7 |
YamlFormElementBase:: |
public | function |
Gets the type name (aka id) of the plugin instance with the 'yamlform_' prefix. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element value has multiple values. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Determine if an element supports a specified property. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if the element has a wrapper. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Initialize an element to be displayed, rendered, or exported. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Checks if element is a composite element. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element is a container that can contain elements. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Checks if element is disabled. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if element is enabled. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Checks if element is hidden. Overrides YamlFormElementInterface:: |
|
YamlFormElementBase:: |
public | function |
Checks if the element carries a value. Overrides YamlFormElementInterface:: |
5 |
YamlFormElementBase:: |
public | function |
Checks if element value could contain multiple lines. Overrides YamlFormElementInterface:: |
3 |
YamlFormElementBase:: |
public | function |
Checks if element is a root element. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Acts on a form submission element after it is created. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Delete any additional value associated with an element. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
public | function |
Acts on loaded form submission. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function |
Acts on a saved form submission element before the insert or update hook is invoked. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
public | function |
Changes the values of an entity before it is created. Overrides YamlFormElementInterface:: |
1 |
YamlFormElementBase:: |
public | function | 1 | |
YamlFormElementBase:: |
protected | function | Prefix an element's export header. | |
YamlFormElementBase:: |
protected | function | Set an elements Flexbox and #states wrapper. | 1 |
YamlFormElementBase:: |
public | function |
Acts on a form submission element before the presave hook is invoked. Overrides YamlFormElementInterface:: |
2 |
YamlFormElementBase:: |
protected | function | Set an element's configuration form element default value. | 2 |
YamlFormElementBase:: |
protected | function | Set configuration form default values recursively. | |
YamlFormElementBase:: |
public | function |
Set an element's default value using saved data. Overrides YamlFormElementInterface:: |
8 |
YamlFormElementBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
YamlFormElementBase:: |
public static | function | Form API callback. Validate #unique value. | |
YamlFormElementBase:: |
public | function |
Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |