Unverified Commit 00ce4413 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

(cherry picked from commit 1dc9a511)
parent f21ee89c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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
   *
+4 −3
Original line number Diff line number Diff line
@@ -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
   *