setLink($link); } } /** * Set the Goto Link * * @param string $link Goto Link * @return \FML\ManiaCode\Go_To */ public function setLink($link) { $this->link = (string) $link; return $this; } /** * * @see \FML\ManiaCode\Element::render() */ public function render(\DOMDocument $domDocument) { $xmlElement = $domDocument->createElement($this->tagName); $linkElement = $domDocument->createElement('link', $this->link); $xmlElement->appendChild($linkElement); return $xmlElement; } }