2014-01-12 00:51:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\ManiaCode;
|
|
|
|
|
2014-04-13 18:21:40 +02:00
|
|
|
/**
|
|
|
|
* Base ManiaCode Element
|
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @author steeffeen
|
2017-03-25 18:40:15 +01:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
|
2014-06-21 03:18:21 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2014-04-13 18:21:40 +02:00
|
|
|
*/
|
2017-03-25 18:40:15 +01:00
|
|
|
interface Element
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the ManiaCode Element
|
|
|
|
*
|
|
|
|
* @param \DOMDocument $domDocument The DOMDocument for which the Element should be rendered
|
|
|
|
* @return \DOMElement
|
|
|
|
*/
|
|
|
|
public function render(\DOMDocument $domDocument);
|
2014-01-12 00:51:46 +01:00
|
|
|
|
|
|
|
}
|