From 6548c6cd1835006fed67a4d1f944094b436feb14 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Sep 2008 17:38:29 -0400 Subject: [PATCH] Added option to add disable attr to common_checkbox() darcs-hash:20080923213829-7b5ce-da5c5d25639812403eb59787c4c429cc9931d08a.gz --- lib/util.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 86b2747dcb..90abe72dba 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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