Added option to add disable attr to common_checkbox()

darcs-hash:20080923213829-7b5ce-da5c5d25639812403eb59787c4c429cc9931d08a.gz
This commit is contained in:
Zach Copley 2008-09-23 17:38:29 -04:00
parent cce099d347
commit 6548c6cd18
1 changed files with 4 additions and 1 deletions

View File

@ -377,7 +377,7 @@ function common_input($id, $label, $value=NULL,$instructions=NULL) {
common_element_end('p');
}
function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true')
function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true', $disabled=false)
{
common_element_start('p');
$attrs = array('name' => $id,
@ -390,6 +390,9 @@ function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value
if ($checked) {
$attrs['checked'] = 'checked';
}
if ($disabled) {
$attrs['disabled'] = 'true';
}
common_element('input', $attrs);
# XXX: use a <label>
common_text(' ');