]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added option to add disable attr to common_checkbox()
authorZach Copley <zach@controlyourself.ca>
Tue, 23 Sep 2008 21:38:29 +0000 (17:38 -0400)
committerZach Copley <zach@controlyourself.ca>
Tue, 23 Sep 2008 21:38:29 +0000 (17:38 -0400)
darcs-hash:20080923213829-7b5ce-da5c5d25639812403eb59787c4c429cc9931d08a.gz

lib/util.php

index 86b2747dcb262f07820c069bbd741bf55cc5cc43..90abe72dba622efb6212e341034b6755ecac21d4 100644 (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(' ');