summaryrefslogtreecommitdiff
path: root/src/views/Template.class.php
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-09-04 20:24:16 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-09-04 20:24:16 -0400
commit4b8e02f4b69ccb4fd3146983bc7570f6ae13bca0 (patch)
tree31714caad52fad1c3198e5640bf08537fa99fd3a /src/views/Template.class.php
parent0e9ce0122646a74de3288fec457f6e148b5f31f8 (diff)
Add a textarea input to the normal template form stuff.
Diffstat (limited to 'src/views/Template.class.php')
-rw-r--r--src/views/Template.class.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/views/Template.class.php b/src/views/Template.class.php
index 62b8ba6..187e65b 100644
--- a/src/views/Template.class.php
+++ b/src/views/Template.class.php
@@ -226,6 +226,12 @@ class Template {
$tag = ($lock?"readonly='readonly' ":'');
return "<input type='$type' name='$id' id='$id' value=\"$value\" $tag/>";
}
+ public function inputTextArea($id, $label, $hint='', $default='', $lock=FALSE) {
+ $value = htmlentities($default);
+ $tag = ($lock?"readonly='readonly' ":'');
+ return $this->input($id, $label, $hint,
+ "<textarea name='$id' id='$id' $tag>$value</textarea>");
+ }
public function inputText($id, $label, $hint='', $default='', $lock=FALSE) {
return $this->input($id, $label, $hint,