TrackManiaControl/application/core/FML/Elements/Format.php
Steffen Schröder 666785de90 FML Update
2013-12-09 13:05:05 +01:00

25 lines
416 B
PHP

<?php
namespace FML\Elements;
/**
* Class representing a format
*
* @author steeffeen
*/
class Format implements BgColorable, Renderable, Styleable, TextFormatable {
/**
* Protected properties
*/
protected $tagName = 'format';
/**
*
* @see \FML\Renderable::render()
*/
public function render(\DOMDocument $domDocument) {
$xml = $domDocument->createElement($this->tagName);
return $xml;
}
}