mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 06:13:32 +09:00
parent
22b16ecc73
commit
b667808d95
6 changed files with 27 additions and 19 deletions
|
|
@ -689,12 +689,12 @@ class documentItem extends Object
|
|||
|
||||
function getRegdateGM()
|
||||
{
|
||||
return gmdate('r', ztime($this->get('regdate')));
|
||||
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('r', $this->getRegdateTime());
|
||||
}
|
||||
|
||||
function getRegdateDT()
|
||||
{
|
||||
return zdate($this->get('regdate'), 'c', false);
|
||||
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('c', $this->getRegdateTime());
|
||||
}
|
||||
|
||||
function getUpdate($format = 'Y.m.d H:i:s', $conversion = true)
|
||||
|
|
@ -709,12 +709,12 @@ class documentItem extends Object
|
|||
|
||||
function getUpdateGM()
|
||||
{
|
||||
return gmdate('r', ztime($this->get('last_update')));
|
||||
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('r', $this->getUpdateTime());
|
||||
}
|
||||
|
||||
function getUpdateDT()
|
||||
{
|
||||
return zdate($this->get('last_update'), 'c', false);
|
||||
return Rhymix\Framework\DateTime::formatTimestampForCurrentUser('c', $this->getUpdateTime());
|
||||
}
|
||||
|
||||
function getPermanentUrl()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue