Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98530859
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
Tue, Jan 14, 01:30
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jan 16, 01:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23570647
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