Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F527109
PhabricatorEditEngineCommentAction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:08 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
114077
Default Alt Text
PhabricatorEditEngineCommentAction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment