Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102247595
PhabricatorExportField.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, Feb 18, 17:41
Size
553 B
Mime Type
text/x-php
Expires
Thu, Feb 20, 17:41 (2 d)
Engine
blob
Format
Raw Data
Handle
24315415
Attached To
rPH Phabricator
PhabricatorExportField.php
View Options
<?php
abstract
class
PhabricatorExportField
extends
Phobject
{
private
$key
;
private
$label
;
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setLabel
(
$label
)
{
$this
->
label
=
$label
;
return
$this
;
}
public
function
getLabel
()
{
return
$this
->
label
;
}
public
function
getTextValue
(
$value
)
{
return
(
string
)
$this
->
getNaturalValue
(
$value
);
}
public
function
getNaturalValue
(
$value
)
{
return
$value
;
}
}
Event Timeline
Log In to Comment