Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452575
AphrontFormSelectControl.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
AphrontFormSelectControl.php
View Options
<?php
final
class
AphrontFormSelectControl
extends
AphrontFormControl
{
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-select'
;
}
private
$options
;
public
function
setOptions
(
array
$options
)
{
$this
->
options
=
$options
;
return
$this
;
}
public
function
getOptions
()
{
return
$this
->
options
;
}
protected
function
renderInput
()
{
return
self
::
renderSelectTag
(
$this
->
getValue
(),
$this
->
getOptions
(),
array
(
'name'
=>
$this
->
getName
(),
'disabled'
=>
$this
->
getDisabled
()
?
'disabled'
:
null
,
'id'
=>
$this
->
getID
(),
));
}
public
static
function
renderSelectTag
(
$selected
,
array
$options
,
array
$attrs
=
array
())
{
$option_tags
=
self
::
renderOptions
(
$selected
,
$options
);
return
javelin_tag
(
'select'
,
$attrs
,
$option_tags
);
}
private
static
function
renderOptions
(
$selected
,
array
$options
)
{
$tags
=
array
();
foreach
(
$options
as
$value
=>
$thing
)
{
if
(
is_array
(
$thing
))
{
$tags
[]
=
phutil_tag
(
'optgroup'
,
array
(
'label'
=>
$value
,
),
self
::
renderOptions
(
$selected
,
$thing
));
}
else
{
$tags
[]
=
phutil_tag
(
'option'
,
array
(
'selected'
=>
(
$value
==
$selected
)
?
'selected'
:
null
,
'value'
=>
$value
,
),
$thing
);
}
}
return
$tags
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:48 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68889
Default Alt Text
AphrontFormSelectControl.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment