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.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/views/Template.class.php b/src/views/Template.class.php
index ba51a2f..663ec05 100644
--- a/src/views/Template.class.php
+++ b/src/views/Template.class.php
@@ -212,8 +212,9 @@ class Template {
echo $str;
}
- public function input($id, $label, $hint, $html) {
- $str = $this->openTag('li');
+ public function input($id, $label, $hint, $html, $tags=null) {
+ if ($tags===null) { $tags=array(); }
+ $str = $this->openTag('li', $tags);
$str.= $this->tag('label', array('for'=>$id), $label);
$str.= $this->text($html);
if (strlen($hint)>0) {
@@ -234,7 +235,8 @@ class Template {
$value = htmlentities($default);
$tag = ($lock?"readonly='readonly' ":'');
return $this->input($id, $label, $hint,
- "<textarea name='$id' id='$id' $tag>$value</textarea>");
+ "<textarea name='$id' id='$id' $tag>$value</textarea>",
+ array('class'=>'wide'));
}
public function inputText($id, $label, $hint='', $default='', $lock=FALSE) {