TrackManiaControl/application/core/FML/Elements/Format.php
Steffen Schröder 7f1646f25d - Moved FML into core folder
- Endurance plugin
- map class nbCheckpoints
- added script callbacks registration
2013-11-25 19:46:29 +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;
}
}
?>