Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F449410
PhabricatorCalendarEventStartDateTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorCalendarEventStartDateTransaction.php
View Options
<?php
final
class
PhabricatorCalendarEventStartDateTransaction
extends
PhabricatorCalendarEventDateTransaction
{
const
TRANSACTIONTYPE
=
'calendar.startdate'
;
public
function
generateOldValue
(
$object
)
{
$editor
=
$this
->
getEditor
();
return
$object
->
newStartDateTime
()
->
newAbsoluteDateTime
()
->
setIsAllDay
(
$editor
->
getOldIsAllDay
())
->
toDictionary
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$actor
=
$this
->
getActor
();
$editor
=
$this
->
getEditor
();
$datetime
=
PhutilCalendarAbsoluteDateTime
::
newFromDictionary
(
$value
);
$datetime
->
setIsAllDay
(
$editor
->
getNewIsAllDay
());
$object
->
setStartDateTime
(
$datetime
);
}
public
function
shouldHide
()
{
if
(
$this
->
isCreateTransaction
())
{
return
true
;
}
return
false
;
}
public
function
getTitle
()
{
return
pht
(
'%s changed the start date for this event from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderOldDate
(),
$this
->
renderNewDate
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s changed the start date for %s from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderOldDate
(),
$this
->
renderNewDate
());
}
protected
function
getInvalidDateMessage
()
{
return
pht
(
'Start date is invalid.'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 7:21 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
66796
Default Alt Text
PhabricatorCalendarEventStartDateTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment