80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FML\ManiaCode;
 | |
| 
 | |
| /**
 | |
|  * ManiaCode Element viewing a Replay
 | |
|  *
 | |
|  * @author steeffeen
 | |
|  */
 | |
| class ViewReplay implements Element {
 | |
| 	/*
 | |
| 	 * Protected Properties
 | |
| 	 */
 | |
| 	protected $tagName = 'view_replay';
 | |
| 	protected $name = '';
 | |
| 	protected $url = '';
 | |
| 
 | |
| 	/**
 | |
| 	 * Create a new ViewReplay Element
 | |
| 	 * 
 | |
| 	 * @param string $name (optional) Replay Name
 | |
| 	 * @param string $url (optional) Replay Url
 | |
| 	 * @return \FML\ManiaCode\ViewReplay
 | |
| 	 */
 | |
| 	public static function create($name = null, $url = null) {
 | |
| 		$viewReplay = new ViewReplay($name, $url);
 | |
| 		return $viewReplay;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Construct a new ViewReplay Element
 | |
| 	 *
 | |
| 	 * @param string $name (optional) Replay Name
 | |
| 	 * @param string $url (optional) Replay Url
 | |
| 	 */
 | |
| 	public function __construct($name = null, $url = null) {
 | |
| 		if ($name !== null) {
 | |
| 			$this->setName($name);
 | |
| 		}
 | |
| 		if ($url !== null) {
 | |
| 			$this->setUrl($url);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Set the Name of the Replay
 | |
| 	 *
 | |
| 	 * @param string $name Replay Name
 | |
| 	 * @return \FML\ManiaCode\ViewReplay
 | |
| 	 */
 | |
| 	public function setName($name) {
 | |
| 		$this->name = (string) $name;
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Set the Url of the Replay
 | |
| 	 *
 | |
| 	 * @param string $url Replay Url
 | |
| 	 * @return \FML\ManiaCode\ViewReplay
 | |
| 	 */
 | |
| 	public function setUrl($url) {
 | |
| 		$this->url = (string) $url;
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 *
 | |
| 	 * @see \FML\ManiaCode\Element::render()
 | |
| 	 */
 | |
| 	public function render(\DOMDocument $domDocument) {
 | |
| 		$xmlElement = $domDocument->createElement($this->tagName);
 | |
| 		$nameElement = $domDocument->createElement('name', $this->name);
 | |
| 		$xmlElement->appendChild($nameElement);
 | |
| 		$urlElement = $domDocument->createElement('url', $this->url);
 | |
| 		$xmlElement->appendChild($urlElement);
 | |
| 		return $xmlElement;
 | |
| 	}
 | |
| }
 |