Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106267182
PhabricatorEditEngineCommentAction.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
Mon, Mar 24, 05:26
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 26, 05:26 (2 d)
Engine
blob
Format
Raw Data
Handle
25081215
Attached To
rPH Phabricator
PhabricatorEditEngineCommentAction.php
View Options
<?php
abstract
class
PhabricatorEditEngineCommentAction
extends
Phobject
{
private
$key
;
private
$label
;
private
$value
;
private
$initialValue
;
private
$order
;
abstract
public
function
getPHUIXControlType
();
abstract
public
function
getPHUIXControlSpecification
();
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
setValue
(
$value
)
{
$this
->
value
=
$value
;
return
$this
;
}
public
function
getValue
()
{
return
$this
->
value
;
}
public
function
setOrder
(
$order
)
{
$this
->
order
=
$order
;
return
$this
;
}
public
function
getOrder
()
{
return
$this
->
order
;
}
public
function
getSortVector
()
{
return
id
(
new
PhutilSortVector
())
->
addInt
(
$this
->
getOrder
());
}
public
function
setInitialValue
(
$initial_value
)
{
$this
->
initialValue
=
$initial_value
;
return
$this
;
}
public
function
getInitialValue
()
{
return
$this
->
initialValue
;
}
}
Event Timeline
Log In to Comment