Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98804937
PhabricatorEditEngineSelectCommentAction.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
Thu, Jan 16, 14:01
Size
572 B
Mime Type
text/x-php
Expires
Sat, Jan 18, 14:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23643547
Attached To
rPH Phabricator
PhabricatorEditEngineSelectCommentAction.php
View Options
<?php
final
class
PhabricatorEditEngineSelectCommentAction
extends
PhabricatorEditEngineCommentAction
{
private
$options
;
public
function
setOptions
(
array
$options
)
{
$this
->
options
=
$options
;
return
$this
;
}
public
function
getOptions
()
{
return
$this
->
options
;
}
public
function
getPHUIXControlType
()
{
return
'select'
;
}
public
function
getPHUIXControlSpecification
()
{
return
array
(
'options'
=>
$this
->
getOptions
(),
'order'
=>
array_keys
(
$this
->
getOptions
()),
'value'
=>
$this
->
getValue
(),
);
}
}
Event Timeline
Log In to Comment