Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96532230
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
Fri, Dec 27, 17:10
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 17:10 (1 d, 7 h)
Engine
blob
Format
Raw Data
Handle
23199947
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
;
private
$submitButtonText
;
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
;
}
public
function
setSubmitButtonText
(
$text
)
{
$this
->
submitButtonText
=
$text
;
return
$this
;
}
public
function
getSubmitButtonText
()
{
return
$this
->
submitButtonText
;
}
}
Event Timeline
Log In to Comment