Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100975876
PhabricatorCalendarEventDeclineTransaction.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
Tue, Feb 4, 11:18
Size
543 B
Mime Type
text/x-php
Expires
Thu, Feb 6, 11:18 (2 d)
Engine
blob
Format
Raw Data
Handle
24067796
Attached To
rPH Phabricator
PhabricatorCalendarEventDeclineTransaction.php
View Options
<?php
final
class
PhabricatorCalendarEventDeclineTransaction
extends
PhabricatorCalendarEventReplyTransaction
{
const
TRANSACTIONTYPE
=
'calendar.decline'
;
public
function
generateNewValue
(
$object
,
$value
)
{
return
PhabricatorCalendarEventInvitee
::
STATUS_DECLINED
;
}
public
function
getTitle
()
{
return
pht
(
'%s declined this event.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s declined %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
Event Timeline
Log In to Comment