Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92693742
AphrontFormCheckboxControl.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 22, 20:29
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 20:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22488916
Attached To
rPH Phabricator
AphrontFormCheckboxControl.php
View Options
<?php
final
class
AphrontFormCheckboxControl
extends
AphrontFormControl
{
private
$boxes
=
array
();
public
function
addCheckbox
(
$name
,
$value
,
$label
,
$checked
=
false
,
$id
=
null
)
{
$this
->
boxes
[]
=
array
(
'name'
=>
$name
,
'value'
=>
$value
,
'label'
=>
$label
,
'checked'
=>
$checked
,
'id'
=>
$id
,
);
return
$this
;
}
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-checkbox'
;
}
protected
function
renderInput
()
{
$rows
=
array
();
foreach
(
$this
->
boxes
as
$box
)
{
$id
=
idx
(
$box
,
'id'
);
if
(
$id
===
null
)
{
$id
=
celerity_generate_unique_node_id
();
}
$checkbox
=
phutil_tag
(
'input'
,
array
(
'id'
=>
$id
,
'type'
=>
'checkbox'
,
'name'
=>
$box
[
'name'
],
'value'
=>
$box
[
'value'
],
'checked'
=>
$box
[
'checked'
]
?
'checked'
:
null
,
'disabled'
=>
$this
->
getDisabled
()
?
'disabled'
:
null
,
));
$label
=
phutil_tag
(
'label'
,
array
(
'for'
=>
$id
,
),
$box
[
'label'
]);
$rows
[]
=
phutil_tag
(
'tr'
,
array
(),
array
(
phutil_tag
(
'td'
,
array
(),
$checkbox
),
phutil_tag
(
'th'
,
array
(),
$label
),
));
}
return
phutil_tag
(
'table'
,
array
(
'class'
=>
'aphront-form-control-checkbox-layout'
),
$rows
);
}
}
Event Timeline
Log In to Comment