Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102870581
PhabricatorTokenGivenFeedStory.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 25, 01:31
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 27, 01:31 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24445497
Attached To
rPH Phabricator
PhabricatorTokenGivenFeedStory.php
View Options
<?php
final
class
PhabricatorTokenGivenFeedStory
extends
PhabricatorFeedStory
{
public
function
getPrimaryObjectPHID
()
{
return
$this
->
getValue
(
'objectPHID'
);
}
public
function
getRequiredHandlePHIDs
()
{
$phids
=
array
();
$phids
[]
=
$this
->
getValue
(
'objectPHID'
);
$phids
[]
=
$this
->
getValue
(
'authorPHID'
);
return
$phids
;
}
public
function
renderView
()
{
$view
=
new
PHUIFeedStoryView
();
$view
->
setAppIcon
(
'token-dark'
);
$view
->
setViewed
(
$this
->
getHasViewed
());
$author_phid
=
$this
->
getValue
(
'authorPHID'
);
$href
=
$this
->
getHandle
(
$this
->
getPrimaryObjectPHID
())->
getURI
();
$view
->
setHref
(
$href
);
$title
=
pht
(
'%s awarded %s a token.'
,
$this
->
linkTo
(
$this
->
getValue
(
'authorPHID'
)),
$this
->
linkTo
(
$this
->
getValue
(
'objectPHID'
)));
$view
->
setTitle
(
$title
);
$view
->
setImage
(
$this
->
getHandle
(
$author_phid
)->
getImageURI
());
return
$view
;
}
public
function
renderText
()
{
// TODO: This is grotesque; the feed notification handler relies on it.
return
strip_tags
(
$this
->
renderView
()->
render
());
}
}
Event Timeline
Log In to Comment