TrackManiaControl/application/FML/Elements/Format.php
Steffen Schröder 835744b0e6 - deleted test plugin
- added FML Library
2013-11-25 00:02:07 +01:00

27 lines
420 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;
}
}
?>