2014-01-12 00:51:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\ManiaCode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ManiaCode Element showing a Message
|
|
|
|
*
|
2014-05-20 15:44:45 +02:00
|
|
|
* @author steeffeen <mail@steeffeen.com>
|
2014-04-13 18:21:40 +02:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
2014-05-18 19:45:50 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2014-01-12 00:51:46 +01:00
|
|
|
*/
|
2014-07-03 22:34:47 +02:00
|
|
|
class ShowMessage extends Element {
|
2014-01-21 20:30:40 +01:00
|
|
|
/*
|
2014-06-21 03:18:21 +02:00
|
|
|
* Protected properties
|
2014-01-12 00:51:46 +01:00
|
|
|
*/
|
|
|
|
protected $tagName = 'show_message';
|
2014-06-21 03:18:21 +02:00
|
|
|
protected $message = null;
|
2014-01-12 00:51:46 +01:00
|
|
|
|
2014-01-19 19:30:21 +01:00
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Create a new ShowMessage object
|
2014-05-18 19:45:50 +02:00
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @param string $message (optional) Message text
|
2014-07-03 22:34:47 +02:00
|
|
|
* @return static
|
2014-01-19 19:30:21 +01:00
|
|
|
*/
|
|
|
|
public static function create($message = null) {
|
2014-06-21 03:18:21 +02:00
|
|
|
return new static($message);
|
2014-01-19 19:30:21 +01:00
|
|
|
}
|
|
|
|
|
2014-01-12 00:51:46 +01:00
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Construct a new ShowMessage object
|
2014-01-12 00:51:46 +01:00
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @param string $message (optional) Message text
|
2014-01-12 00:51:46 +01:00
|
|
|
*/
|
|
|
|
public function __construct($message = null) {
|
2014-08-11 23:15:53 +02:00
|
|
|
if ($message !== null) {
|
2014-01-12 00:51:46 +01:00
|
|
|
$this->setMessage($message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Set the message text
|
2014-01-12 00:51:46 +01:00
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @param string $message Message text
|
2014-07-03 22:34:47 +02:00
|
|
|
* @return static
|
2014-01-12 00:51:46 +01:00
|
|
|
*/
|
|
|
|
public function setMessage($message) {
|
2014-05-18 19:45:50 +02:00
|
|
|
$this->message = (string)$message;
|
2014-01-12 00:51:46 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \FML\ManiaCode\Element::render()
|
|
|
|
*/
|
|
|
|
public function render(\DOMDocument $domDocument) {
|
2014-07-03 22:34:47 +02:00
|
|
|
$xmlElement = parent::render($domDocument);
|
2014-01-12 00:51:46 +01:00
|
|
|
$messageElement = $domDocument->createElement('message', $this->message);
|
|
|
|
$xmlElement->appendChild($messageElement);
|
|
|
|
return $xmlElement;
|
|
|
|
}
|
|
|
|
}
|