TrackManiaControl/application/core/FML/ManiaLinks.php

76 lines
1.5 KiB
PHP
Raw Normal View History

2013-12-03 23:02:31 +01:00
<?php
namespace FML;
/**
2013-12-09 13:05:05 +01:00
* Class holding several Manialinks at once
2013-12-03 23:02:31 +01:00
*
* @author steeffeen
*/
class ManiaLinks {
/**
2013-12-31 02:55:19 +01:00
* Protected Properties
2013-12-03 23:02:31 +01:00
*/
protected $encoding = 'utf-8';
protected $tagName = 'manialinks';
protected $children = array();
/**
2013-12-31 02:55:19 +01:00
* Set XML Encoding
2013-12-03 23:02:31 +01:00
*
2013-12-31 02:55:19 +01:00
* @param string $encoding
* XML Encoding
2013-12-03 23:02:31 +01:00
* @return \FML\ManiaLinks
*/
public function setXmlEncoding($encoding) {
$this->encoding = $encoding;
return $this;
}
/**
2013-12-31 02:55:19 +01:00
* Add a Child Manialink
2013-12-03 23:02:31 +01:00
*
2013-12-31 02:55:19 +01:00
* @param ManiaLink $child
* Child Manialink
2013-12-03 23:02:31 +01:00
* @return \FML\ManiaLinks
*/
public function add(ManiaLink $child) {
2013-12-31 02:55:19 +01:00
if (!in_array($child, $this->children)) {
array_push($this->children, $child);
}
2013-12-03 23:02:31 +01:00
return $this;
}
/**
2013-12-31 02:55:19 +01:00
* Remove all Child Manialinks
2013-12-03 23:02:31 +01:00
*
* @return \FML\ManiaLinks
*/
public function removeChildren() {
$this->children = array();
return $this;
}
/**
2013-12-31 02:55:19 +01:00
* Render the XML Document
2013-12-03 23:02:31 +01:00
*
* @param bool $echo
* If the xml should be echoed and the content-type header should be set
* @return \DOMDocument
*/
public function render($echo = false) {
$domDocument = new \DOMDocument('1.0', $this->encoding);
$manialinks = $domDocument->createElement($this->tagName);
$domDocument->appendChild($manialinks);
2013-12-03 23:02:31 +01:00
foreach ($this->children as $child) {
$childXml = $child->render(false, $domDocument);
$manialinks->appendChild($childXml);
2013-12-03 23:02:31 +01:00
}
if ($echo) {
header('Content-Type: application/xml');
echo $domDocument->saveXML();
}
return $domDocument;
}
}