Class yii\helpers\BaseFormatConverter
Inheritance | yii\helpers\BaseFormatConverter |
---|---|
Subclasses | yii\helpers\FormatConverter |
Available since version | 2.0 |
Source Code | https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseFormatConverter.php |
BaseFormatConverter provides concrete implementation for yii\helpers\FormatConverter.
Do not use BaseFormatConverter. Use yii\helpers\FormatConverter instead.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$juiFallbackDatePatterns | array | The jQuery UI fallback definition to use for the ICU short patterns short , medium , long and full . |
yii\helpers\BaseFormatConverter |
$phpFallbackDatePatterns | array | The php fallback definition to use for the ICU short patterns short , medium , long and full . |
yii\helpers\BaseFormatConverter |
Public Methods
Method | Description | Defined By |
---|---|---|
convertDateIcuToJui() | Converts a date format pattern from [ICU format][] to [jQuery UI date format][]. | yii\helpers\BaseFormatConverter |
convertDateIcuToPhp() | Converts a date format pattern from [ICU format][] to [php date() function format][]. | yii\helpers\BaseFormatConverter |
convertDatePhpToIcu() | Converts a date format pattern from [php date() function format][] to [ICU format][]. | yii\helpers\BaseFormatConverter |
convertDatePhpToJui() | Converts a date format pattern from [php date() function format][] to [jQuery UI date format][]. | yii\helpers\BaseFormatConverter |
Property Details
The jQuery UI fallback definition to use for the ICU short patterns short
, medium
, long
and full
.
This is used as fallback when the intl extension is not installed.
The php fallback definition to use for the ICU short patterns short
, medium
, long
and full
.
This is used as fallback when the intl extension is not installed.
Method Details
Converts a date format pattern from [ICU format][] to [jQuery UI date format][].
Pattern constructs that are not supported by the jQuery UI format will be removed.
public static string convertDateIcuToJui ( $pattern, $type = 'date', $locale = null ) | ||
$pattern | string | Date format pattern in ICU format. |
$type | string | 'date', 'time', or 'datetime'. |
$locale | string | The locale to use for converting ICU short patterns |
return | string | The converted date format pattern. |
---|
Converts a date format pattern from [ICU format][] to [php date() function format][].
The conversion is limited to date patterns that do not use escaped characters.
Patterns like d 'of' MMMM yyyy
which will result in a date like 1 of December 2014
may not be converted correctly
because of the use of escaped characters.
Pattern constructs that are not supported by the PHP format will be removed.
public static string convertDateIcuToPhp ( $pattern, $type = 'date', $locale = null ) | ||
$pattern | string | Date format pattern in ICU format. |
$type | string | 'date', 'time', or 'datetime'. |
$locale | string | The locale to use for converting ICU short patterns |
return | string | The converted date format pattern. |
---|
Converts a date format pattern from [php date() function format][] to [ICU format][].
Pattern constructs that are not supported by the ICU format will be removed.
Since 2.0.13 it handles escaped characters correctly.
public static string convertDatePhpToIcu ( $pattern ) | ||
$pattern | string | Date format pattern in php date()-function format. |
return | string | The converted date format pattern. |
---|
Converts a date format pattern from [php date() function format][] to [jQuery UI date format][].
The conversion is limited to date patterns that do not use escaped characters.
Patterns like jS \o\f F Y
which will result in a date like 1st of December 2014
may not be converted correctly
because of the use of escaped characters.
Pattern constructs that are not supported by the jQuery UI format will be removed.
public static string convertDatePhpToJui ( $pattern ) | ||
$pattern | string | Date format pattern in php date()-function format. |
return | string | The converted date format pattern. |
---|
Signup or Login in order to comment.