HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/LHouwen/dokuwiki.logic.nl/wwwroot/inc/Form/TagOpenElement.php
<?php
namespace dokuwiki\Form;

/**
 * Class TagOpenElement
 *
 * Creates an open HTML tag. You have to make sure you close it
 * again or this will produce invalid HTML
 *
 * @package dokuwiki\Form
 */
class TagOpenElement extends ValueElement {

    /**
     * @param string $tag
     * @param array $attributes
     */
    public function __construct($tag, $attributes = array()) {
        parent::__construct('tagopen', $tag, $attributes);
    }

    /**
     * The HTML representation of this element
     *
     * @return string
     */
    public function toHTML() {
        return '<'.$this->val().' '.buildAttributes($this->attrs()).'>';
    }
}