Datetime::getHtml5TimeFormat

protected static Datetime::getHtml5TimeFormat($element)

Retrieves the right format for a HTML5 time element.

The format is important because these elements will not work with any other format.

Parameters

string $element: The $element to assess.

Return value

string Returns the right format for the time element, or the original format if this is not a HTML5 element.

File

core/lib/Drupal/Core/Datetime/Element/Datetime.php, line 419

Class

Datetime
Provides a datetime element.

Namespace

Drupal\Core\Datetime\Element

Code

protected static function getHtml5TimeFormat($element) {
  switch ($element['#date_time_element']) {
    case 'time':
      return DateFormat::load('html_time')->getPattern();

    default:
      return $element['#date_time_format'];
  }
}
doc_Drupal
2016-10-29 09:00:56
Comments
Leave a Comment

Please login to continue.