Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106818806
DiffusionCommitRemarkupRule.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, Apr 1, 02:44
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 3, 02:44 (2 d)
Engine
blob
Format
Raw Data
Handle
25281985
Attached To
rPH Phabricator
DiffusionCommitRemarkupRule.php
View Options
<?php
final
class
DiffusionCommitRemarkupRule
extends
PhabricatorObjectRemarkupRule
{
protected
function
getObjectNamePrefix
()
{
return
''
;
}
protected
function
getObjectNamePrefixBeginsWithWordCharacter
()
{
return
true
;
}
protected
function
getObjectIDPattern
()
{
return
PhabricatorRepositoryCommitPHIDType
::
getCommitObjectNamePattern
();
}
protected
function
getObjectNameText
(
$object
,
PhabricatorObjectHandle
$handle
,
$id
)
{
// If this commit is unreachable, return the handle name instead of the
// normal text because it may be able to tell the user that the commit
// was rewritten and where to find the new one.
// By default, we try to preserve what the user actually typed as
// faithfully as possible, but if they're referencing a deleted commit
// it's more valuable to try to pick up any rewrite. See T11522.
if
(
$object
->
isUnreachable
())
{
return
$handle
->
getName
();
}
return
parent
::
getObjectNameText
(
$object
,
$handle
,
$id
);
}
protected
function
loadObjects
(
array
$ids
)
{
$viewer
=
$this
->
getEngine
()->
getConfig
(
'viewer'
);
$query
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$viewer
)
->
withIdentifiers
(
$ids
);
$query
->
execute
();
return
$query
->
getIdentifierMap
();
}
}
Event Timeline
Log In to Comment