| Current Path : /home/rtorresani/www/vendor/laminas/laminas-feed/src/Writer/Extension/DublinCore/Renderer/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-feed/src/Writer/Extension/DublinCore/Renderer/Feed.php |
<?php
declare(strict_types=1);
namespace Laminas\Feed\Writer\Extension\DublinCore\Renderer;
use DOMDocument;
use DOMElement;
use Laminas\Feed\Writer\Extension;
use function array_key_exists;
use function strtolower;
class Feed extends Extension\AbstractRenderer
{
/**
* Set to TRUE if a rendering method actually renders something. This
* is used to prevent premature appending of a XML namespace declaration
* until an element which requires it is actually appended.
*
* @var bool
*/
protected $called = false;
/**
* Render feed
*
* @return void
*/
public function render()
{
if (strtolower($this->getType()) === 'atom') {
return;
}
$this->_setAuthors($this->dom, $this->base);
if ($this->called) {
$this->_appendNamespaces();
}
}
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
/**
* Append namespaces to feed element
*
* @return void
*/
protected function _appendNamespaces()
{
$this->getRootElement()->setAttribute(
'xmlns:dc',
'http://purl.org/dc/elements/1.1/'
);
}
/**
* Set feed authors
*
* @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((string) $data['name']);
$author->appendChild($text);
$root->appendChild($author);
}
}
$this->called = true;
}
// phpcs:enable PSR2.Methods.MethodDeclaration.Underscore
}