diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-08-03 18:47:19 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-08-03 18:47:19 +0200 |
commit | 8909ab7629ec67708b589c35d380c68da04a8b44 (patch) | |
tree | a35ec57bebc7c0fcc45853fe377b5b0fcc2d5846 /inc/Form/FieldsetOpenElement.php | |
parent | b20571a714d774d231f80f95643c6f84ef9833ed (diff) | |
parent | 3c8e094acdcf6d556f022bc224b81ef17e449281 (diff) | |
download | rpg-8909ab7629ec67708b589c35d380c68da04a8b44.tar.gz rpg-8909ab7629ec67708b589c35d380c68da04a8b44.tar.bz2 |
Merge pull request #1265 from splitbrain/form2
Form 2
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; + } +} |