summaryrefslogtreecommitdiff
path: root/inc/Form/TextareaElement.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2015-08-03 18:47:19 +0200
committerAndreas Gohr <andi@splitbrain.org>2015-08-03 18:47:19 +0200
commit8909ab7629ec67708b589c35d380c68da04a8b44 (patch)
treea35ec57bebc7c0fcc45853fe377b5b0fcc2d5846 /inc/Form/TextareaElement.php
parentb20571a714d774d231f80f95643c6f84ef9833ed (diff)
parent3c8e094acdcf6d556f022bc224b81ef17e449281 (diff)
downloadrpg-8909ab7629ec67708b589c35d380c68da04a8b44.tar.gz
rpg-8909ab7629ec67708b589c35d380c68da04a8b44.tar.bz2
Merge pull request #1265 from splitbrain/form2
Form 2
Diffstat (limited to 'inc/Form/TextareaElement.php')
-rw-r--r--inc/Form/TextareaElement.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/inc/Form/TextareaElement.php b/inc/Form/TextareaElement.php
new file mode 100644
index 000000000..9d461fdf5
--- /dev/null
+++ b/inc/Form/TextareaElement.php
@@ -0,0 +1,51 @@
+<?php
+namespace dokuwiki\Form;
+
+/**
+ * Class TextareaElement
+ * @package dokuwiki\Form
+ */
+class TextareaElement extends InputElement {
+
+ /**
+ * @var string the actual text within the area
+ */
+ protected $text;
+
+ /**
+ * @param string $name The name of this form element
+ * @param string $label The label text for this element
+ */
+ public function __construct($name, $label) {
+ parent::__construct('textarea', $name, $label);
+ $this->attr('dir', 'auto');
+ }
+
+ /**
+ * Get or set the element's value
+ *
+ * This is the preferred way of setting the element's value
+ *
+ * @param null|string $value
+ * @return string|$this
+ */
+ public function val($value = null) {
+ if($value !== null) {
+ $this->text = $value;
+ return $this;
+ }
+ return $this->text;
+ }
+
+ /**
+ * The HTML representation of this element
+ *
+ * @return string
+ */
+ protected function mainElementHTML() {
+ if($this->useInput) $this->prefillInput();
+ return '<textarea ' . buildAttributes($this->attrs()) . '>' .
+ formText($this->val()) . '</textarea>';
+ }
+
+}