Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93141570
AphrontFormSelectControl.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
Tue, Nov 26, 12:46
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 12:46 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22581212
Attached To
rPH Phabricator
AphrontFormSelectControl.php
View Options
<?php
final
class
AphrontFormSelectControl
extends
AphrontFormControl
{
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-select'
;
}
private
$options
;
private
$disabledOptions
=
array
();
public
function
setOptions
(
array
$options
)
{
$this
->
options
=
$options
;
return
$this
;
}
public
function
getOptions
()
{
return
$this
->
options
;
}
public
function
setDisabledOptions
(
array
$disabled
)
{
$this
->
disabledOptions
=
$disabled
;
return
$this
;
}
protected
function
renderInput
()
{
return
self
::
renderSelectTag
(
$this
->
getValue
(),
$this
->
getOptions
(),
array
(
'name'
=>
$this
->
getName
(),
'disabled'
=>
$this
->
getDisabled
()
?
'disabled'
:
null
,
'id'
=>
$this
->
getID
(),
),
$this
->
disabledOptions
);
}
public
static
function
renderSelectTag
(
$selected
,
array
$options
,
array
$attrs
=
array
(),
array
$disabled
=
array
())
{
$option_tags
=
self
::
renderOptions
(
$selected
,
$options
,
$disabled
);
return
javelin_tag
(
'select'
,
$attrs
,
$option_tags
);
}
private
static
function
renderOptions
(
$selected
,
array
$options
,
array
$disabled
=
array
())
{
$disabled
=
array_fuse
(
$disabled
);
$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
,
'disabled'
=>
isset
(
$disabled
[
$value
])
?
'disabled'
:
null
,
),
$thing
);
}
}
return
$tags
;
}
}
Event Timeline
Log In to Comment