summaryrefslogtreecommitdiff
path: root/platform/www/inc/Form/HTMLElement.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Form/HTMLElement.php')
-rw-r--r--platform/www/inc/Form/HTMLElement.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/platform/www/inc/Form/HTMLElement.php b/platform/www/inc/Form/HTMLElement.php
new file mode 100644
index 0000000..591cf47
--- /dev/null
+++ b/platform/www/inc/Form/HTMLElement.php
@@ -0,0 +1,29 @@
+<?php
+namespace dokuwiki\Form;
+
+/**
+ * Class HTMLElement
+ *
+ * Holds arbitrary HTML that is added as is to the Form
+ *
+ * @package dokuwiki\Form
+ */
+class HTMLElement extends ValueElement {
+
+
+ /**
+ * @param string $html
+ */
+ public function __construct($html) {
+ parent::__construct('html', $html);
+ }
+
+ /**
+ * The HTML representation of this element
+ *
+ * @return string
+ */
+ public function toHTML() {
+ return $this->val();
+ }
+}