doc .= $this->FormattedXhtml(''); } public function underline_close() { $this->doc .= $this->FormattedXhtml(''); } public function internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content') { $xhtml = $this->formattedXhtml(parent::internallink($id, $name, $search, true, $linktype)); if ($returnonly) { return $xhtml; } $this->doc .= $xhtml; } public function externallink($url, $name = null, $returnonly = false) { $xhtml = $this->formattedXhtml(parent::externallink($url, $name, true)); if ($returnonly) { return $xhtml; } $this->doc .= $xhtml; } public function internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) { $xhtml = $this->formattedXhtml(parent::internalmedia($src, $title, $align, $width, $height, $cache, $linking, true)); if ($return) { return $xhtml; } $this->doc .= $xhtml; } public function cdata($text) { $this->doc .= $text; } public function p_open() {} public function p_close() {} }