Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91353075
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
Sun, Nov 10, 06:34
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Nov 12, 06:34 (2 d)
Engine
blob
Format
Raw Data
Handle
22248315
Attached To
rPH Phabricator
PhabricatorEditEngineCommentAction.php
View Options
<?php
abstract
class
PhabricatorEditEngineCommentAction
extends
Phobject
{
private
$key
;
private
$label
;
private
$value
;
private
$initialValue
;
private
$order
;
private
$groupKey
;
private
$conflictKey
;
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
setGroupKey
(
$group_key
)
{
$this
->
groupKey
=
$group_key
;
return
$this
;
}
public
function
getGroupKey
()
{
return
$this
->
groupKey
;
}
public
function
setConflictKey
(
$conflict_key
)
{
$this
->
conflictKey
=
$conflict_key
;
return
$this
;
}
public
function
getConflictKey
()
{
return
$this
->
conflictKey
;
}
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