Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
3073543c
Commit
3073543c
authored
Feb 27, 2014
by
andy5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove language check from DatePicker
parent
b52302a8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
DatePicker.php
extensions/jui/DatePicker.php
+3
-15
No files found.
extensions/jui/DatePicker.php
View file @
3073543c
...
@@ -46,20 +46,8 @@ use yii\helpers\Json;
...
@@ -46,20 +46,8 @@ use yii\helpers\Json;
class
DatePicker
extends
InputWidget
class
DatePicker
extends
InputWidget
{
{
/**
/**
* @var array the list of supported languages.
*/
public
static
$languageList
=
[
'af'
,
'ar-DZ'
,
'ar'
,
'az'
,
'be'
,
'bg'
,
'bs'
,
'ca'
,
'cs'
,
'cy-GB'
,
'da'
,
'de'
,
'el'
,
'en-AU'
,
'en-GB'
,
'en-NZ'
,
'eo'
,
'es'
,
'et'
,
'eu'
,
'fa'
,
'fi'
,
'fo'
,
'fr-CA'
,
'fr-CH'
,
'fr'
,
'gl'
,
'he'
,
'hi'
,
'hr'
,
'hu'
,
'hy'
,
'id'
,
'is'
,
'it'
,
'ja'
,
'ka'
,
'kk'
,
'km'
,
'ko'
,
'ky'
,
'lb'
,
'lt'
,
'lv'
,
'mk'
,
'ml'
,
'ms'
,
'nb'
,
'nl-BE'
,
'nn'
,
'no'
,
'pl'
,
'pt-BR'
,
'pt'
,
'rm'
,
'ro'
,
'ru'
,
'sk'
,
'sl'
,
'sq'
,
'sr-SR'
,
'sr'
,
'sv'
,
'ta'
,
'th'
,
'tj'
,
'tr'
,
'uk'
,
'vi'
,
'zh-CN'
,
'zh-HK'
,
'zh-TW'
,
];
/**
* @var string the locale ID (eg 'fr', 'de') for the language to be used by the date picker.
* @var string the locale ID (eg 'fr', 'de') for the language to be used by the date picker.
* If this property is not set, then the current application language will be used.
* If this property is empty, then the current application language will be used.
* If the property value is not in the [[languageList]], then date picker will show in English.
*/
*/
public
$language
;
public
$language
;
/**
/**
...
@@ -90,8 +78,8 @@ class DatePicker extends InputWidget
...
@@ -90,8 +78,8 @@ class DatePicker extends InputWidget
{
{
echo
$this
->
renderWidget
()
.
"
\n
"
;
echo
$this
->
renderWidget
()
.
"
\n
"
;
$containerID
=
$this
->
inline
?
$this
->
containerOptions
[
'id'
]
:
$this
->
options
[
'id'
];
$containerID
=
$this
->
inline
?
$this
->
containerOptions
[
'id'
]
:
$this
->
options
[
'id'
];
$language
=
$this
->
language
===
null
?
Yii
::
$app
->
language
:
$this
->
language
;
$language
=
$this
->
language
?
$this
->
language
:
Yii
::
$app
->
language
;
if
(
in_array
(
$language
,
static
::
$languageList
)
)
{
if
(
$language
!=
'en'
)
{
$view
=
$this
->
getView
();
$view
=
$this
->
getView
();
DatePickerRegionalAsset
::
register
(
$view
);
DatePickerRegionalAsset
::
register
(
$view
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment