summaryrefslogtreecommitdiff
path: root/src/views/Template.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Template.class.php')
-rw-r--r--src/views/Template.class.php30
1 files changed, 28 insertions, 2 deletions
diff --git a/src/views/Template.class.php b/src/views/Template.class.php
index b128ef3..ba51a2f 100644
--- a/src/views/Template.class.php
+++ b/src/views/Template.class.php
@@ -254,9 +254,35 @@ class Template {
"\n".$this->tabs()."\t".
$this->inputStr('password', $id.'_verify', $default,$lock));
}
- public function inputBool($name, $value, $label, $default=FALSE, $lock=FALSE) {
+ public function inputBool($id, $label, $hint='', $default=FALSE, $lock=FALSE) {
+ $tag = '';
+ if ($lock) $tag.= "readonly='readonly' ";
+ if ($default) $tag.= "checked='checked' ";
+ return $this->input($id, $label, $hint,
+ "<input type='hidden' name='$id' value='false' />".
+ "<input type='checkbox' id='$id' name='$id' value='true' $tag>");
+
+ $attrib = array('type'=>'checkbox',
+ 'id'=>$id,
+ 'name'=>$name.'[]',
+ 'value'=>$value);
+ if ($default) $attrib['checked']='checked';
+ if ($lock ) $attrib['readonly']='readonly';
+
+ $str = $this->openTag('li');
+ $str.= $this->tag('input', $attrib);
+ $str.= $this->tag('label', array('for'=>$id), $label);
+ $str.= $this->closeTag('li');
+
+ if ($this->ret) return $str;
+ echo $str;
+
+ }
+
+ public function inputBoolArray($name, $value, $label, $default=FALSE, $lock=FALSE) {
+ $id = $name.'_'.$value;
$attrib = array('type'=>'checkbox',
- 'id'=>$name.'_'.$value,
+ 'id'=>$id,
'name'=>$name.'[]',
'value'=>$value);
if ($default) $attrib['checked']='checked';