huge fml update

This commit is contained in:
Steffen Schröder
2014-01-19 19:30:21 +01:00
parent 9654b26f2b
commit 771409b8eb
66 changed files with 2303 additions and 134 deletions

View File

@ -22,6 +22,22 @@ class CustomUI {
protected $scoretableVisible = null;
protected $globalVisible = null;
/**
* Create a new CustomUI Object
*
* @return \FML\CustomUI
*/
public static function create() {
$customUI = new CustomUI();
return $customUI;
}
/**
* Construct a new CustomUI Object
*/
public function __construct() {
}
/**
* Set XML Encoding
*
@ -131,6 +147,7 @@ class CustomUI {
$isChild = (bool) $domDocument;
if (!$isChild) {
$domDocument = new \DOMDocument('1.0', $this->encoding);
$domDocument->xmlStandalone = true;
}
$xmlElement = $domDocument->createElement($this->tagName);
if (!$isChild) {