Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96314324
PhabricatorCalendarEventAllDayTransaction.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
Wed, Dec 25, 03:28
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 27, 03:28 (2 d)
Engine
blob
Format
Raw Data
Handle
23159100
Attached To
rPH Phabricator
PhabricatorCalendarEventAllDayTransaction.php
View Options
<?php
final
class
PhabricatorCalendarEventAllDayTransaction
extends
PhabricatorCalendarEventTransactionType
{
const
TRANSACTIONTYPE
=
'calendar.allday'
;
public
function
generateOldValue
(
$object
)
{
return
(
int
)
$object
->
getIsAllDay
();
}
public
function
generateNewValue
(
$object
,
$value
)
{
return
(
int
)
$value
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setIsAllDay
(
$value
);
// Adjust the flags on any other dates the event has.
$keys
=
array
(
'startDateTime'
,
'endDateTime'
,
'untilDateTime'
,
);
foreach
(
$keys
as
$key
)
{
$dict
=
$object
->
getParameter
(
$key
);
if
(!
$dict
)
{
continue
;
}
$datetime
=
PhutilCalendarAbsoluteDateTime
::
newFromDictionary
(
$dict
);
$datetime
->
setIsAllDay
(
$value
);
$object
->
setParameter
(
$key
,
$datetime
->
toDictionary
());
}
}
public
function
getTitle
()
{
if
(
$this
->
getNewValue
())
{
return
pht
(
'%s changed this to an all day event.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s converted this from an all day event.'
,
$this
->
renderAuthor
());
}
}
public
function
getTitleForFeed
()
{
if
(
$this
->
getNewValue
())
{
return
pht
(
'%s changed %s to an all day event.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
else
{
return
pht
(
'%s converted %s from an all day event.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
}
Event Timeline
Log In to Comment