Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90414811
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
Fri, Nov 1, 11:36
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 3, 11:36 (2 d)
Engine
blob
Format
Raw Data
Handle
22072287
Attached To
rPH Phabricator
AphrontFormSelectControl.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
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
=
array
();
foreach
(
$options
as
$value
=>
$label
)
{
$option_tags
[]
=
phutil_render_tag
(
'option'
,
array
(
'selected'
=>
(
$value
==
$selected
)
?
'selected'
:
null
,
'value'
=>
$value
,
),
phutil_escape_html
(
$label
));
}
return
javelin_render_tag
(
'select'
,
$attrs
,
implode
(
"
\n
"
,
$option_tags
));
}
}
Event Timeline
Log In to Comment