diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-05-08 20:37:06 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-05-08 20:37:06 +0200 |
commit | 64744a10c5578602141ae2977274eec3fcff1f44 (patch) | |
tree | 83c0f7bbac3ec45a05ce4da474aebb567ec27845 /inc/Form/FieldsetOpenElement.php | |
parent | de19515f04567db78bd41d5bff68a88bfb8c2a22 (diff) | |
download | rpg-64744a10c5578602141ae2977274eec3fcff1f44.tar.gz rpg-64744a10c5578602141ae2977274eec3fcff1f44.tar.bz2 |
more elements and work on the legacy support
Diffstat (limited to 'inc/Form/FieldsetOpenElement.php')
-rw-r--r-- | inc/Form/FieldsetOpenElement.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/inc/Form/FieldsetOpenElement.php b/inc/Form/FieldsetOpenElement.php new file mode 100644 index 000000000..a7de461fa --- /dev/null +++ b/inc/Form/FieldsetOpenElement.php @@ -0,0 +1,36 @@ +<?php +namespace dokuwiki\Form; + +/** + * Class FieldsetOpenElement + * + * Opens a Fieldset with an optional legend + * + * @package dokuwiki\Form + */ +class FieldsetOpenElement extends TagOpenElement { + + /** + * @param string $legend + * @param array $attributes + */ + public function __construct($legend='', $attributes = array()) { + // this is a bit messy and we just do it for the nicer class hierarchy + // the parent would expect the tag in $value but we're storing the + // legend there, so we have to set the type manually + parent::__construct($legend, $attributes); + $this->type = 'fieldsetopen'; + } + + /** + * The HTML representation of this element + * + * @return string + */ + public function toHTML() { + $html = '<fieldset '.buildAttributes($this->attrs()).'>'; + $legend = $this->val(); + if($legend) $html .= DOKU_LF.'<legend>'.hsc($legend).'</legend>'; + return $html; + } +} |