Skip to content
Snippets Groups Projects
Commit 65403936 authored by Andrey Postnikov's avatar Andrey Postnikov Committed by Tim Plunkett
Browse files

Issue #1676820 by andypost: Fixed Date time string bugs.

parent 049b4fad
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
...@@ -25,7 +25,7 @@ function options_form(&$form, &$form_state) { ...@@ -25,7 +25,7 @@ function options_form(&$form, &$form_state) {
$date_formats = array(); $date_formats = array();
$date_types = system_get_date_types(); $date_types = system_get_date_types();
foreach ($date_types as $key => $value) { foreach ($date_types as $key => $value) {
$date_formats[$value['type']] = check_plain(t($value['title'] . ' format')) . ': ' . format_date(REQUEST_TIME, $value['type']); $date_formats[$value['type']] = t('@date_format format', array('@date_format' => $value['title'])) . ': ' . format_date(REQUEST_TIME, $value['type']);
} }
$form['date_format'] = array( $form['date_format'] = array(
...@@ -46,7 +46,7 @@ function options_form(&$form, &$form_state) { ...@@ -46,7 +46,7 @@ function options_form(&$form, &$form_state) {
$form['custom_date_format'] = array( $form['custom_date_format'] = array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => t('Custom date format'), '#title' => t('Custom date format'),
'#description' => t('If "Custom", see <a href="http://us.php.net/manual/en/function.date.php" target="_blank">the PHP docs</a> for date formats. Otherwise, enter the number of different time units to display, which defaults to 2.'), '#description' => t('If "Custom", see the <a href="@url" target="_blank">PHP manual</a> for date formats. Otherwise, enter the number of different time units to display, which defaults to 2.', array('@url' => 'http://php.net/manual/function.date.php')),
'#default_value' => isset($this->options['custom_date_format']) ? $this->options['custom_date_format'] : '', '#default_value' => isset($this->options['custom_date_format']) ? $this->options['custom_date_format'] : '',
); );
// Setup #states for all possible date_formats on the custom_date_format form element. // Setup #states for all possible date_formats on the custom_date_format form element.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment