2014-01-03 17:18:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML;
|
|
|
|
|
2014-01-19 19:30:21 +01:00
|
|
|
use FML\Elements\Dico;
|
2014-01-21 20:30:40 +01:00
|
|
|
use FML\Script\Script;
|
2014-01-19 19:30:21 +01:00
|
|
|
use FML\Stylesheet\Stylesheet;
|
2014-01-21 20:30:40 +01:00
|
|
|
use FML\Types\Renderable;
|
2014-04-27 14:44:40 +02:00
|
|
|
use FML\Types\ScriptFeatureable;
|
2014-01-03 17:18:14 +01:00
|
|
|
|
|
|
|
/**
|
2014-01-12 00:51:46 +01:00
|
|
|
* Class representing a ManiaLink
|
2014-01-03 17:18:14 +01:00
|
|
|
*
|
2014-05-20 15:44:45 +02:00
|
|
|
* @author steeffeen <mail@steeffeen.com>
|
2017-03-25 18:40:15 +01:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
|
2014-05-14 23:24:00 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2014-01-03 17:18:14 +01:00
|
|
|
*/
|
2017-03-25 18:40:15 +01:00
|
|
|
class ManiaLink
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants
|
|
|
|
*/
|
2017-04-02 16:32:57 +02:00
|
|
|
const VERSION_0 = 0;
|
|
|
|
const VERSION_1 = 1;
|
|
|
|
const VERSION_2 = 2;
|
|
|
|
const VERSION_3 = 3;
|
2017-03-25 18:40:15 +01:00
|
|
|
const BACKGROUND_0 = "0";
|
|
|
|
const BACKGROUND_1 = "1";
|
|
|
|
const BACKGROUND_STARS = "stars";
|
|
|
|
const BACKGROUND_STATIONS = "stations";
|
|
|
|
const BACKGROUND_TITLE = "title";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $maniaLinkId ManiaLink ID
|
|
|
|
*/
|
|
|
|
protected $maniaLinkId = null;
|
|
|
|
|
2017-07-02 17:45:32 +02:00
|
|
|
/**
|
|
|
|
* @var int $defaultVersion Default ManiaLink version
|
|
|
|
*/
|
|
|
|
static protected $defaultVersion = self::VERSION_1;
|
|
|
|
|
2017-03-25 18:40:15 +01:00
|
|
|
/**
|
|
|
|
* @var int $version ManiaLink version
|
|
|
|
*/
|
2017-07-02 17:45:32 +02:00
|
|
|
protected $version = self::VERSION_1;
|
2017-03-25 18:40:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $name ManiaLink name
|
|
|
|
*/
|
|
|
|
protected $name = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $background Background
|
|
|
|
*/
|
|
|
|
protected $background = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool $navigable3d 3d navigable
|
|
|
|
*/
|
|
|
|
protected $navigable3d = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int $timeout Timeout
|
|
|
|
*/
|
|
|
|
protected $timeout = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Renderable[] $children Children
|
|
|
|
*/
|
|
|
|
protected $children = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Dico $dico Dictionary
|
|
|
|
*/
|
|
|
|
protected $dico = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Stylesheet $stylesheet Style sheet
|
|
|
|
*/
|
|
|
|
protected $stylesheet = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Script $script Script
|
|
|
|
*/
|
|
|
|
protected $script = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new ManiaLink
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param string $maniaLinkId (optional) ManiaLink ID
|
|
|
|
* @param int $version (optional) Version
|
|
|
|
* @param string $name (optional) Name
|
|
|
|
* @param Renderable[] $children (optional) Children
|
|
|
|
* @return static
|
|
|
|
*/
|
2017-07-02 17:45:32 +02:00
|
|
|
public static function create($maniaLinkId = null, $version = null, $name = null, array $children = null)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
|
|
|
return new static($maniaLinkId, $version, $name, $children);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new ManiaLink
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param string $maniaLinkId (optional) ManiaLink ID
|
|
|
|
* @param int $version (optional) Version
|
|
|
|
* @param string $name (optional) Name
|
|
|
|
* @param Renderable[] $children (optional) Children
|
|
|
|
*/
|
2017-07-02 17:45:32 +02:00
|
|
|
public function __construct($maniaLinkId = null, $version = null, $name = null, array $children = null)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
2017-04-02 16:32:57 +02:00
|
|
|
if (is_string($version) && (!$name || is_array($name)) && !$children) {
|
2017-07-02 17:45:32 +02:00
|
|
|
// backwards-compatibility (version has been introduced later, if it's a string it's supposed to be the name)
|
2017-03-25 18:40:15 +01:00
|
|
|
$children = $name;
|
|
|
|
$name = $version;
|
2017-07-02 17:45:32 +02:00
|
|
|
$version = null;
|
2017-03-25 18:40:15 +01:00
|
|
|
}
|
|
|
|
if ($maniaLinkId) {
|
|
|
|
$this->setId($maniaLinkId);
|
|
|
|
}
|
2017-07-02 17:45:32 +02:00
|
|
|
if ($version === null) {
|
|
|
|
$this->setVersion(static::$defaultVersion);
|
|
|
|
} else {
|
2017-03-25 18:40:15 +01:00
|
|
|
$this->setVersion($version);
|
|
|
|
}
|
|
|
|
if ($name) {
|
|
|
|
$this->setName($name);
|
|
|
|
}
|
|
|
|
if ($children) {
|
|
|
|
$this->setChildren($children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ID
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->maniaLinkId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the ID
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param string $maniaLinkId ManiaLink ID
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setId($maniaLinkId)
|
|
|
|
{
|
|
|
|
$this->maniaLinkId = (string)$maniaLinkId;
|
|
|
|
if ($this->maniaLinkId && !$this->name) {
|
|
|
|
$this->setName($this->maniaLinkId);
|
|
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2017-07-02 17:45:32 +02:00
|
|
|
/**
|
|
|
|
* Get the default version
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function getDefaultVersion()
|
|
|
|
{
|
|
|
|
return static::$defaultVersion;
|
|
|
|
}
|
|
|
|
|
2017-03-25 18:40:15 +01:00
|
|
|
/**
|
|
|
|
* Get the version
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getVersion()
|
|
|
|
{
|
|
|
|
return $this->version;
|
|
|
|
}
|
|
|
|
|
2017-07-02 17:45:32 +02:00
|
|
|
/**
|
|
|
|
* Set the default version
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param int $defaultVersion Default ManiaLink version
|
|
|
|
*/
|
|
|
|
public static function setDefaultVersion($defaultVersion)
|
|
|
|
{
|
|
|
|
static::$defaultVersion = (int)$defaultVersion;
|
|
|
|
}
|
|
|
|
|
2017-03-25 18:40:15 +01:00
|
|
|
/**
|
|
|
|
* Set the version
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param int $version ManiaLink version
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setVersion($version)
|
|
|
|
{
|
|
|
|
$this->version = (int)$version;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the name
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param string $name ManiaLink Name
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setName($name)
|
|
|
|
{
|
|
|
|
$this->name = (string)$name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the background
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBackground()
|
|
|
|
{
|
|
|
|
return $this->background;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the background
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param string $background Background value
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setBackground($background)
|
|
|
|
{
|
|
|
|
$this->background = (string)$background;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get navigable3d
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getNavigable3d()
|
|
|
|
{
|
|
|
|
return $this->navigable3d;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set navigable3d
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param bool $navigable3d If the ManiaLink should be 3d navigable
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setNavigable3d($navigable3d)
|
|
|
|
{
|
|
|
|
$this->navigable3d = (bool)$navigable3d;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the timeout
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getTimeout()
|
|
|
|
{
|
|
|
|
return $this->timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the timeout
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param int $timeout Timeout duration
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setTimeout($timeout)
|
|
|
|
{
|
|
|
|
$this->timeout = (int)$timeout;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get children
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return Renderable[]
|
|
|
|
*/
|
|
|
|
public function getChildren()
|
|
|
|
{
|
|
|
|
return $this->children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a child
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Renderable $child Child Element to add
|
|
|
|
* @return static
|
2017-04-02 16:32:57 +02:00
|
|
|
* @deprecated Use addChild()
|
|
|
|
* @see ManiaLink::addChild()
|
2017-03-25 18:40:15 +01:00
|
|
|
*/
|
|
|
|
public function add(Renderable $child)
|
|
|
|
{
|
|
|
|
return $this->addChild($child);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a child
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Renderable $child Child Element to add
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function addChild(Renderable $child)
|
|
|
|
{
|
|
|
|
if (!in_array($child, $this->children, true)) {
|
|
|
|
array_push($this->children, $child);
|
|
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-02 16:32:57 +02:00
|
|
|
* Add children
|
2017-03-25 18:40:15 +01:00
|
|
|
*
|
|
|
|
* @api
|
2017-04-02 16:32:57 +02:00
|
|
|
* @param Renderable[] $children Child Elements to add
|
2017-03-25 18:40:15 +01:00
|
|
|
* @return static
|
|
|
|
*/
|
2017-04-02 16:32:57 +02:00
|
|
|
public function addChildren(array $children)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
|
|
|
foreach ($children as $child) {
|
|
|
|
$this->addChild($child);
|
|
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2017-04-02 16:32:57 +02:00
|
|
|
/**
|
|
|
|
* Set children
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Renderable[] $children Child Elements
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setChildren(array $children)
|
|
|
|
{
|
|
|
|
return $this->removeAllChildren()
|
|
|
|
->addChildren($children);
|
|
|
|
}
|
|
|
|
|
2017-03-25 18:40:15 +01:00
|
|
|
/**
|
|
|
|
* Remove all children
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return static
|
2017-04-02 16:32:57 +02:00
|
|
|
* @deprecated Use removeAllChildren()
|
|
|
|
* @see ManiaLink::removeAllChildren()
|
2017-03-25 18:40:15 +01:00
|
|
|
*/
|
|
|
|
public function removeChildren()
|
|
|
|
{
|
|
|
|
return $this->removeAllChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all children
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function removeAllChildren()
|
|
|
|
{
|
|
|
|
$this->children = array();
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Dictionary
|
|
|
|
*
|
|
|
|
* @api
|
2017-04-02 16:32:57 +02:00
|
|
|
* @param bool $createIfEmpty (optional) If the Dico should be created if it doesn't exist yet
|
2017-03-25 18:40:15 +01:00
|
|
|
* @return Dico
|
|
|
|
*/
|
2017-04-02 16:32:57 +02:00
|
|
|
public function getDico($createIfEmpty = true)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
2017-04-02 16:32:57 +02:00
|
|
|
if (!$this->dico && $createIfEmpty) {
|
|
|
|
$this->setDico(new Dico());
|
|
|
|
}
|
2017-03-25 18:40:15 +01:00
|
|
|
return $this->dico;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Dictionary
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Dico $dico Dictionary
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setDico(Dico $dico = null)
|
|
|
|
{
|
|
|
|
$this->dico = $dico;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Stylesheet
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return Stylesheet
|
|
|
|
*/
|
2017-04-02 16:32:57 +02:00
|
|
|
public function getStylesheet($createIfEmpty = true)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
2017-04-02 16:32:57 +02:00
|
|
|
if (!$this->stylesheet && $createIfEmpty) {
|
|
|
|
return $this->createStylesheet();
|
|
|
|
}
|
2017-03-25 18:40:15 +01:00
|
|
|
return $this->stylesheet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Stylesheet
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Stylesheet $stylesheet Stylesheet
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setStylesheet(Stylesheet $stylesheet = null)
|
|
|
|
{
|
|
|
|
$this->stylesheet = $stylesheet;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2017-04-02 16:32:57 +02:00
|
|
|
/**
|
|
|
|
* Create and assign a new Stylesheet if necessary
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return Stylesheet
|
|
|
|
*/
|
|
|
|
public function createStylesheet()
|
|
|
|
{
|
|
|
|
if ($this->stylesheet) {
|
|
|
|
return $this->stylesheet;
|
|
|
|
}
|
|
|
|
$stylesheet = new Stylesheet();
|
|
|
|
$this->setStylesheet($stylesheet);
|
|
|
|
return $this->stylesheet;
|
|
|
|
}
|
|
|
|
|
2017-03-25 18:40:15 +01:00
|
|
|
/**
|
|
|
|
* Get the Script
|
|
|
|
*
|
|
|
|
* @api
|
2017-04-02 16:32:57 +02:00
|
|
|
* @param bool $createIfEmpty (optional) Create the script if it's not set yet
|
2017-03-25 18:40:15 +01:00
|
|
|
* @return Script
|
|
|
|
*/
|
2017-04-02 16:32:57 +02:00
|
|
|
public function getScript($createIfEmpty = true)
|
2017-03-25 18:40:15 +01:00
|
|
|
{
|
2017-04-02 16:32:57 +02:00
|
|
|
if (!$this->script && $createIfEmpty) {
|
|
|
|
return $this->createScript();
|
|
|
|
}
|
2017-03-25 18:40:15 +01:00
|
|
|
return $this->script;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Script
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @param Script $script Script
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function setScript(Script $script = null)
|
|
|
|
{
|
|
|
|
$this->script = $script;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create and assign a new Script if necessary
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return Script
|
|
|
|
*/
|
|
|
|
public function createScript()
|
|
|
|
{
|
|
|
|
if ($this->script) {
|
|
|
|
return $this->script;
|
|
|
|
}
|
|
|
|
$script = new Script();
|
|
|
|
$this->setScript($script);
|
|
|
|
return $this->script;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the ManiaLink
|
|
|
|
*
|
|
|
|
* @param bool $echo (optional) If the XML text should be echoed and the Content-Type header should be set
|
|
|
|
* @param \DOMDocument $domDocument (optional) DOMDocument for which the ManiaLink should be rendered
|
|
|
|
* @return \DOMDocument
|
|
|
|
*/
|
|
|
|
public function render($echo = false, $domDocument = null)
|
|
|
|
{
|
|
|
|
$isChild = (bool)$domDocument;
|
|
|
|
if (!$isChild) {
|
|
|
|
$domDocument = new \DOMDocument("1.0", "utf-8");
|
|
|
|
$domDocument->xmlStandalone = true;
|
|
|
|
}
|
|
|
|
$maniaLink = $domDocument->createElement("manialink");
|
|
|
|
if (!$isChild) {
|
|
|
|
$domDocument->appendChild($maniaLink);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->maniaLinkId) {
|
|
|
|
$maniaLink->setAttribute("id", $this->maniaLinkId);
|
|
|
|
}
|
|
|
|
if ($this->version > 0) {
|
|
|
|
$maniaLink->setAttribute("version", $this->version);
|
|
|
|
}
|
|
|
|
if ($this->name) {
|
|
|
|
$maniaLink->setAttribute("name", $this->name);
|
|
|
|
}
|
|
|
|
if ($this->background) {
|
|
|
|
$maniaLink->setAttribute("background", $this->background);
|
|
|
|
}
|
|
|
|
if (!$this->navigable3d) {
|
|
|
|
$maniaLink->setAttribute("navigable3d", "0");
|
|
|
|
}
|
|
|
|
if ($this->timeout) {
|
|
|
|
$timeoutXml = $domDocument->createElement("timeout", $this->timeout);
|
|
|
|
$maniaLink->appendChild($timeoutXml);
|
|
|
|
}
|
|
|
|
if ($this->dico) {
|
|
|
|
$dicoXml = $this->dico->render($domDocument);
|
|
|
|
$maniaLink->appendChild($dicoXml);
|
|
|
|
}
|
|
|
|
|
|
|
|
$scriptFeatures = array();
|
|
|
|
foreach ($this->children as $child) {
|
|
|
|
$childXml = $child->render($domDocument);
|
|
|
|
$maniaLink->appendChild($childXml);
|
|
|
|
if ($child instanceof ScriptFeatureable) {
|
|
|
|
$scriptFeatures = array_merge($scriptFeatures, $child->getScriptFeatures());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->stylesheet) {
|
|
|
|
$stylesheetXml = $this->stylesheet->render($domDocument);
|
|
|
|
$maniaLink->appendChild($stylesheetXml);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($scriptFeatures) {
|
|
|
|
$this->createScript()
|
|
|
|
->loadFeatures($scriptFeatures);
|
|
|
|
}
|
|
|
|
if ($this->script) {
|
|
|
|
if ($this->script->needsRendering()) {
|
|
|
|
$scriptXml = $this->script->render($domDocument);
|
|
|
|
$maniaLink->appendChild($scriptXml);
|
|
|
|
}
|
|
|
|
$this->script->resetGenericScriptLabels();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isChild) {
|
|
|
|
return $maniaLink;
|
|
|
|
}
|
|
|
|
if ($echo) {
|
|
|
|
header("Content-Type: application/xml; charset=utf-8;");
|
|
|
|
echo $domDocument->saveXML();
|
|
|
|
}
|
|
|
|
return $domDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the string representation
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function __toString()
|
|
|
|
{
|
|
|
|
return $this->render()
|
|
|
|
->saveXML();
|
|
|
|
}
|
|
|
|
|
2013-11-25 00:02:07 +01:00
|
|
|
}
|