Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104848144
HeraldFieldValue.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
Wed, Mar 12, 21:04
Size
680 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 21:04 (2 d)
Engine
blob
Format
Raw Data
Handle
24864179
Attached To
rPH Phabricator
HeraldFieldValue.php
View Options
<?php
abstract
class
HeraldFieldValue
extends
Phobject
{
const
CONTROL_NONE
=
'herald.control.none'
;
const
CONTROL_TEXT
=
'herald.control.text'
;
const
CONTROL_SELECT
=
'herald.control.select'
;
const
CONTROL_TOKENIZER
=
'herald.control.tokenizer'
;
abstract
public
function
getFieldValueKey
();
abstract
public
function
getControlType
();
abstract
public
function
renderValue
(
PhabricatorUser
$viewer
,
$value
);
final
public
function
getControlSpecificationDictionary
()
{
return
array
(
'control'
=>
$this
->
getControlType
(),
'template'
=>
$this
->
getControlTemplate
(),
);
}
protected
function
getControlTemplate
()
{
return
array
();
}
}
Event Timeline
Log In to Comment