Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90378347
DifferentialDiffRepositoryHeraldField.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, 02:48
Size
617 B
Mime Type
text/x-php
Expires
Sun, Nov 3, 02:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22064749
Attached To
rPH Phabricator
DifferentialDiffRepositoryHeraldField.php
View Options
<?php
final
class
DifferentialDiffRepositoryHeraldField
extends
DifferentialDiffHeraldField
{
const
FIELDCONST
=
'differential.diff.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