Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98289377
PhabricatorCalendarEventStartDateTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 11, 19:43
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 13, 19:43 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23550523
Attached To
rPH Phabricator
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.'
);
}
}
Event Timeline
Log In to Comment