Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F972399
AphrontFormRadioButtonControl.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
AphrontFormRadioButtonControl.php
View Options
<?php
final
class
AphrontFormRadioButtonControl
extends
AphrontFormControl
{
private
$buttons
=
array
();
public
function
addButton
(
$value
,
$label
,
$caption
,
$class
=
null
,
$disabled
=
false
)
{
$this
->
buttons
[]
=
array
(
'value'
=>
$value
,
'label'
=>
$label
,
'caption'
=>
$caption
,
'class'
=>
$class
,
'disabled'
=>
$disabled
,
);
return
$this
;
}
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-radio'
;
}
protected
function
renderInput
()
{
$rows
=
array
();
foreach
(
$this
->
buttons
as
$button
)
{
$id
=
celerity_generate_unique_node_id
();
$radio
=
phutil_tag
(
'input'
,
array
(
'id'
=>
$id
,
'type'
=>
'radio'
,
'name'
=>
$this
->
getName
(),
'value'
=>
$button
[
'value'
],
'checked'
=>
(
$button
[
'value'
]
==
$this
->
getValue
())
?
'checked'
:
null
,
'disabled'
=>
(
$this
->
getDisabled
()
||
$button
[
'disabled'
])
?
'disabled'
:
null
,
));
$label
=
phutil_tag
(
'label'
,
array
(
'for'
=>
$id
,
'class'
=>
$button
[
'class'
],
),
$button
[
'label'
]);
if
(
$button
[
'caption'
])
{
$label
=
array
(
$label
,
phutil_tag_div
(
'aphront-form-radio-caption'
,
$button
[
'caption'
]),
);
}
$rows
[]
=
phutil_tag
(
'tr'
,
array
(),
array
(
phutil_tag
(
'td'
,
array
(),
$radio
),
phutil_tag
(
'th'
,
array
(),
$label
),
));
}
return
phutil_tag
(
'table'
,
array
(
'class'
=>
'aphront-form-control-radio-layout'
),
$rows
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 6:10 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
220916
Default Alt Text
AphrontFormRadioButtonControl.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment