Skip to content
Snippets Groups Projects
Unverified Commit 1dc9a511 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3016064 by yogeshmpawar, vacho, msankhala, singhkiran,...

Issue #3016064 by yogeshmpawar, vacho, msankhala, singhkiran, deepanker_bhalla, gambry, dpi: Improve documentation for Datetime and Datelist #date_timezone property
parent 296ba5d8
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -147,9 +147,9 @@ public static function valueCallback(&$element, $input, FormStateInterface $form
* - #date_increment: The increment to use for minutes and seconds, i.e.
* '15' would show only :00, :15, :30 and :45. Defaults to 1 to show every
* minute.
* - #date_timezone: The local timezone to use when displaying or
* interpreting dates. Defaults to the value returned by
* drupal_get_user_timezone().
* - #date_timezone: The Time Zone Identifier (TZID) to use when displaying
* or interpreting dates, i.e: 'Asia/Kolkata'. Defaults to the value
* returned by drupal_get_user_timezone().
*
* Example usage:
* @code
......@@ -160,6 +160,7 @@ public static function valueCallback(&$element, $input, FormStateInterface $form
* '#date_text_parts' => array('year'),
* '#date_year_range' => '2010:2020',
* '#date_increment' => 15,
* '#date_timezone' => 'Asia/Kolkata'
* );
* @endcode
*
......
......@@ -188,9 +188,9 @@ public static function valueCallback(&$element, $input, FormStateInterface $form
* "seconds"-component will not be shown in the input. Used for HTML5 step
* values and jQueryUI datepicker settings. Defaults to 1 to show every
* second.
* - #date_timezone: The local timezone to use when displaying or
* interpreting dates. Defaults to the value returned by
* drupal_get_user_timezone().
* - #date_timezone: The Time Zone Identifier (TZID) to use when displaying
* or interpreting dates, i.e: 'Asia/Kolkata'. Defaults to the value
* returned by drupal_get_user_timezone().
*
* Example usage:
* @code
......@@ -200,6 +200,7 @@ public static function valueCallback(&$element, $input, FormStateInterface $form
* '#date_date_element' => 'date',
* '#date_time_element' => 'none',
* '#date_year_range' => '2010:+3',
* '#date_timezone' => 'Asia/Kolkata',
* );
* @endcode
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment