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
230f40c8
Commit
230f40c8
authored
Jan 26, 2014
by
Vladimir Zbrailov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix formatter
parent
84bfc3fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Formatter.php
framework/base/Formatter.php
+5
-5
No files found.
framework/base/Formatter.php
View file @
230f40c8
...
...
@@ -275,7 +275,7 @@ class Formatter extends Component
return
$this
->
nullDisplay
;
}
$value
=
$this
->
normalizeDatetimeValue
(
$value
);
return
$this
->
formatTimestamp
(
$value
,
$format
);
return
$this
->
formatTimestamp
(
$value
,
$format
===
null
?
$this
->
dateFormat
:
$format
,
$value
);
}
/**
...
...
@@ -299,7 +299,7 @@ class Formatter extends Component
return
$this
->
nullDisplay
;
}
$value
=
$this
->
normalizeDatetimeValue
(
$value
);
return
$this
->
formatTimestamp
(
$value
,
$format
);
return
$this
->
formatTimestamp
(
$value
,
$format
===
null
?
$this
->
timeFormat
:
$format
,
$value
);
}
/**
...
...
@@ -323,7 +323,7 @@ class Formatter extends Component
return
$this
->
nullDisplay
;
}
$value
=
$this
->
normalizeDatetimeValue
(
$value
);
return
$this
->
formatTimestamp
(
$value
,
$format
);
return
$this
->
formatTimestamp
(
$value
,
$format
===
null
?
$this
->
datetimeFormat
:
$format
,
$value
);
}
/**
...
...
@@ -347,12 +347,12 @@ class Formatter extends Component
* @param string $format the format used to convert the value into a date string.
* @return string the formatted result
*/
protected
function
formatTimestamp
(
$value
,
$format
=
null
)
protected
function
formatTimestamp
(
$value
,
$format
)
{
$date
=
new
DateTime
();
$date
->
setTimestamp
(
$value
);
$date
->
setTimezone
(
$this
->
timeZone
);
return
$date
->
format
(
$format
===
null
?
$this
->
datetimeFormat
:
$format
);
return
$date
->
format
(
$format
);
}
/**
...
...
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