Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2889119
PhabricatorEditEngineCommentAction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
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
;
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 11:32 (5 w, 16 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124187
Default Alt Text
PhabricatorEditEngineCommentAction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment