Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121715456
DiffusionCommitPackageHeraldField.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
Sun, Jul 13, 09:35
Size
771 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 09:35 (2 d)
Engine
blob
Format
Raw Data
Handle
27378972
Attached To
rPH Phabricator
DiffusionCommitPackageHeraldField.php
View Options
<?php
final
class
DiffusionCommitPackageHeraldField
extends
DiffusionCommitHeraldField
{
const
FIELDCONST
=
'diffusion.commit.package'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Affected packages'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
$packages
=
$this
->
getAdapter
()->
loadAffectedPackages
();
return
mpull
(
$packages
,
'getPHID'
);
}
protected
function
getHeraldFieldStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
public
function
getHeraldFieldValueType
(
$condition
)
{
switch
(
$condition
)
{
case
HeraldAdapter
::
CONDITION_EXISTS
:
case
HeraldAdapter
::
CONDITION_NOT_EXISTS
:
return
HeraldAdapter
::
VALUE_NONE
;
default
:
return
HeraldAdapter
::
VALUE_OWNERS_PACKAGE
;
}
}
}
Event Timeline
Log In to Comment