_container = $container; } /** * Set feed encoding * * @param string $enc * @return Zend_Feed_Writer_Extension_RendererAbstract */ public function setEncoding($enc) { $this->_encoding = $enc; return $this; } /** * Get feed encoding * * @return void */ public function getEncoding() { return $this->_encoding; } /** * Set DOMDocument and DOMElement on which to operate * * @param DOMDocument $dom * @param DOMElement $base * @return Zend_Feed_Writer_Extension_RendererAbstract */ public function setDomDocument(DOMDocument $dom, DOMElement $base) { $this->_dom = $dom; $this->_base = $base; return $this; } /** * Get data container being rendered * * @return mixed */ public function getDataContainer() { return $this->_container; } /** * Set feed type * * @param string $type * @return Zend_Feed_Writer_Extension_RendererAbstract */ public function setType($type) { $this->_type = $type; return $this; } /** * Get feedtype * * @return string */ public function getType() { return $this->_type; } /** * Set root element of document * * @param DOMElement $root * @return Zend_Feed_Writer_Extension_RendererAbstract */ public function setRootElement(DOMElement $root) { $this->_rootElement = $root; return $this; } /** * Get root element * * @return DOMElement */ public function getRootElement() { return $this->_rootElement; } /** * Append namespaces to feed * * @return void */ abstract protected function _appendNamespaces(); }