summaryrefslogtreecommitdiff
path: root/inc/Form/Label.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2015-08-18 20:36:08 +0200
committerAndreas Gohr <andi@splitbrain.org>2015-08-18 20:38:33 +0200
commita453c16b3290eabdf35778c54498101c737544e1 (patch)
treec3638bb285b3005758df58e81e7b148ea373523e /inc/Form/Label.php
parent8f0df229ed3e82191f118594ea5145c9d5942d7b (diff)
downloadrpg-a453c16b3290eabdf35778c54498101c737544e1.tar.gz
rpg-a453c16b3290eabdf35778c54498101c737544e1.tar.bz2
Form: more flexible label handling #1312
You now can add labels that don't wrap around inputs, but you have to ensure IDs are properly assigned yourself. The Label class has been renamed to LabelElement to reflect the naming scheme of the other elements.
Diffstat (limited to 'inc/Form/Label.php')
-rw-r--r--inc/Form/Label.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/inc/Form/Label.php b/inc/Form/Label.php
deleted file mode 100644
index 8dcd7cd5f..000000000
--- a/inc/Form/Label.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-namespace dokuwiki\Form;
-
-/**
- * Class Label
- * @package dokuwiki\Form
- */
-class Label extends ValueElement {
-
- /**
- * Creates a new Label
- *
- * @param string $label
- */
- public function __construct($label) {
- parent::__construct('label', $label);
- }
-
- /**
- * The HTML representation of this element
- *
- * @return string
- */
- public function toHTML() {
- return '<label ' . buildAttributes($this->attrs()) . '>' . hsc($this->val()) . '</label>';
- }
-}