summaryrefslogtreecommitdiff
path: root/platform/www/inc/Form/TagElement.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Form/TagElement.php')
-rw-r--r--platform/www/inc/Form/TagElement.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/platform/www/inc/Form/TagElement.php b/platform/www/inc/Form/TagElement.php
new file mode 100644
index 0000000..ea5144c
--- /dev/null
+++ b/platform/www/inc/Form/TagElement.php
@@ -0,0 +1,29 @@
+<?php
+namespace dokuwiki\Form;
+
+/**
+ * Class TagElement
+ *
+ * Creates a self closing HTML tag
+ *
+ * @package dokuwiki\Form
+ */
+class TagElement extends ValueElement {
+
+ /**
+ * @param string $tag
+ * @param array $attributes
+ */
+ public function __construct($tag, $attributes = array()) {
+ parent::__construct('tag', $tag, $attributes);
+ }
+
+ /**
+ * The HTML representation of this element
+ *
+ * @return string
+ */
+ public function toHTML() {
+ return '<'.$this->val().' '.buildAttributes($this->attrs()).' />';
+ }
+}