- Moved FML into core folder

- Endurance plugin
- map class nbCheckpoints
- added script callbacks registration
This commit is contained in:
Steffen Schröder
2013-11-25 19:46:29 +01:00
parent 65394e165e
commit 7f1646f25d
65 changed files with 141 additions and 4 deletions

View File

@ -0,0 +1,26 @@
<?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;
}
}
?>

View File

@ -0,0 +1,37 @@
<?php
namespace FML\Elements;
/**
* Class representing include
*
* @author steeffeen
*/
class Including implements Renderable {
/**
* Protected properties
*/
protected $url = '';
protected $tagName = 'include';
/**
* Set url
*
* @param string $url
*/
public function setUrl($url) {
$this->url = $url;
}
/**
*
* @see \FML\Renderable::render()
*/
public function render(\DOMDocument $domDocument) {
$xml = $domDocument->createElement($this->tagName);
$xml->setAttribute('url', $this->url);
return $xml;
}
}
?>

View File

@ -0,0 +1,41 @@
<?php
namespace FML\Elements;
/**
* Class representing music
*
* @author steeffeen
*/
class Music implements Renderable {
/**
* Protected properties
*/
protected $data = '';
protected $tagName = 'music';
/**
* Set data
*
* @param string $data
* @return \FML\Elements\Music
*/
public function setData($data) {
$this->data = $data;
return $this;
}
/**
*
* @see \FML\Renderable::render()
*/
public function render(\DOMDocument $domDocument) {
$xml = $domDocument->createElement($this->tagName);
if ($this->data) {
$xml->setAttribute('data', $this->data);
}
return $xml;
}
}
?>

View File

@ -0,0 +1,42 @@
<?php
namespace FML\Elements;
use FML\Types\Renderable;
/**
* Class representing a manialink script tag with a simple script text
*
* @author steeffeen
*/
class SimpleScript implements Renderable {
/**
* Protected properties
*/
protected $tagName = 'script';
protected $text = '';
/**
* Set script text
*
* @param string $text
* @return \FML\Script\Script
*/
public function setText($text) {
$this->text = $text;
return $this;
}
/**
*
* @see \FML\Types\Renderable::render()
*/
public function render(\DOMDocument $domDocument) {
$xml = $domDocument->createElement($this->tagName);
$scriptComment = $domDocument->createComment($this->text);
$xml->appendChild($scriptComment);
return $xml;
}
}
?>