getType()) == 'atom') { return; } $this->_setAuthors($this->_dom, $this->_base); if ($this->_called) { $this->_appendNamespaces(); } } /** * Append namespaces to entry * * @return void */ protected function _appendNamespaces() { $this->getRootElement()->setAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/'); } /** * Set entry author elements * * @param DOMDocument $dom * @param DOMElement $root * @return void */ protected function _setAuthors(DOMDocument $dom, DOMElement $root) { $authors = $this->getDataContainer()->getAuthors(); if (!$authors || empty($authors)) { return; } foreach ($authors as $data) { $author = $this->_dom->createElement('dc:creator'); if (array_key_exists('name', $data)) { $text = $dom->createTextNode($data['name']); $author->appendChild($text); $root->appendChild($author); } } $this->_called = true; } }