summaryrefslogtreecommitdiff
path: root/inc/Form/Label.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Form/Label.php')
-rw-r--r--inc/Form/Label.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/inc/Form/Label.php b/inc/Form/Label.php
new file mode 100644
index 000000000..c8a862613
--- /dev/null
+++ b/inc/Form/Label.php
@@ -0,0 +1,46 @@
+<?php
+namespace dokuwiki\Form;
+
+/**
+ * Class Label
+ * @package dokuwiki\Form
+ */
+class Label extends Element {
+ /**
+ * @var string the actual label text
+ */
+ public $label = '';
+
+ /**
+ * Creates a new Label
+ *
+ * @param string $label
+ */
+ public function __construct($label) {
+ parent::__construct('label');
+ $this->label = $label;
+ }
+
+ /**
+ * Get or set the element's label text
+ *
+ * @param null|string $value
+ * @return string|$this
+ */
+ public function val($value = null) {
+ if($value !== null) {
+ $this->label = $value;
+ return $this;
+ }
+ return $this->label;
+ }
+
+ /**
+ * The HTML representation of this element
+ *
+ * @return string
+ */
+ public function toHTML() {
+ return '<label ' . buildAttributes($this->attrs()) . '>' . hsc($this->label) . '</label>';
+ }
+}