Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96250076
HeraldContentSourceField.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, Dec 24, 04:02
Size
820 B
Mime Type
text/x-php
Expires
Thu, Dec 26, 04:02 (1 d, 9 h)
Engine
blob
Format
Raw Data
Handle
23142654
Attached To
rPH Phabricator
HeraldContentSourceField.php
View Options
<?php
final
class
HeraldContentSourceField
extends
HeraldField
{
const
FIELDCONST
=
'contentsource'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Content source'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
return
$this
->
getAdapter
()->
getContentSource
()->
getSource
();
}
public
function
getHeraldFieldConditions
()
{
return
array
(
HeraldAdapter
::
CONDITION_IS
,
HeraldAdapter
::
CONDITION_IS_NOT
,
);
}
public
function
getHeraldFieldValueType
(
$condition
)
{
$map
=
PhabricatorContentSource
::
getSourceNameMap
();
asort
(
$map
);
return
id
(
new
HeraldSelectFieldValue
())
->
setKey
(
self
::
FIELDCONST
)
->
setDefault
(
PhabricatorContentSource
::
SOURCE_WEB
)
->
setOptions
(
$map
);
}
public
function
supportsObject
(
$object
)
{
return
true
;
}
}
Event Timeline
Log In to Comment