Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96357388
PhabricatorFeedStoryAudit.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, 20:42
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 27, 20:42 (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
23154525
Attached To
rPH Phabricator
PhabricatorFeedStoryAudit.php
View Options
<?php
final
class
PhabricatorFeedStoryAudit
extends
PhabricatorFeedStory
{
public
function
getPrimaryObjectPHID
()
{
return
$this
->
getStoryData
()->
getValue
(
'commitPHID'
);
}
public
function
renderView
()
{
$author_phid
=
$this
->
getAuthorPHID
();
$commit_phid
=
$this
->
getPrimaryObjectPHID
();
$view
=
$this
->
newStoryView
();
$action
=
$this
->
getValue
(
'action'
);
$verb
=
PhabricatorAuditActionConstants
::
getActionPastTenseVerb
(
$action
);
$view
->
setTitle
(
hsprintf
(
'%s %s commit %s.'
,
$this
->
linkTo
(
$author_phid
),
$verb
,
$this
->
linkTo
(
$commit_phid
)));
$comments
=
$this
->
getValue
(
'content'
);
$view
->
setImage
(
$this
->
getHandle
(
$author_phid
)->
getImageURI
());
if
(
$comments
)
{
$content
=
$this
->
renderSummary
(
$this
->
getValue
(
'content'
));
$view
->
appendChild
(
$content
);
}
return
$view
;
}
public
function
renderText
()
{
$author_name
=
$this
->
getHandle
(
$this
->
getAuthorPHID
())->
getLinkName
();
$commit_path
=
$this
->
getHandle
(
$this
->
getPrimaryObjectPHID
())->
getURI
();
$commit_uri
=
PhabricatorEnv
::
getURI
(
$commit_path
);
$action
=
$this
->
getValue
(
'action'
);
$verb
=
PhabricatorAuditActionConstants
::
getActionPastTenseVerb
(
$action
);
$text
=
"{$author_name} {$verb} commit {$commit_uri}"
;
return
$text
;
}
}
Event Timeline
Log In to Comment