Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90467887
DifferentialRevisionRepositoryHeraldField.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
Fri, Nov 1, 23:11
Size
629 B
Mime Type
text/x-php
Expires
Sun, Nov 3, 23:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22081870
Attached To
rPH Phabricator
DifferentialRevisionRepositoryHeraldField.php
View Options
<?php
final
class
DifferentialRevisionRepositoryHeraldField
extends
DifferentialRevisionHeraldField
{
const
FIELDCONST
=
'differential.revision.repository'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Repository'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
$repository
=
$this
->
getAdapter
()->
loadRepository
();
if
(!
$repository
)
{
return
null
;
}
return
$repository
->
getPHID
();
}
protected
function
getHeraldFieldStandardType
()
{
return
self
::
STANDARD_PHID_NULLABLE
;
}
protected
function
getDatasource
()
{
return
new
DiffusionRepositoryDatasource
();
}
}
Event Timeline
Log In to Comment