Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/laminas/laminas-feed/src/Writer/Extension/PodcastIndex/Renderer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/laminas/laminas-feed/src/Writer/Extension/PodcastIndex/Renderer/Entry.php
<?php

declare(strict_types=1);

namespace Laminas\Feed\Writer\Extension\PodcastIndex\Renderer;

use DOMDocument;
use DOMElement;
use Laminas\Feed\Writer\Extension;

use function array_key_exists;

/**
 * Renders PodcastIndex data of an entry in a RSS Feed
 */
class Entry 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 entry
     */
    public function render(): void
    {
        $this->setTranscript($this->dom, $this->base);
        $this->setChapters($this->dom, $this->base);
        $this->setSoundbites($this->dom, $this->base);
        if ($this->called) {
            $this->_appendNamespaces();
        }
    }

    /**
     * Append namespaces to entry root
     */
    // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
    protected function _appendNamespaces(): void
    {
        $this->getRootElement()->setAttribute(
            'xmlns:podcast',
            'https://github.com/Podcastindex-org/podcast-namespace/blob/main/docs/1.0.md'
        );
    }

    /**
     * Set entry transcript
     */
    protected function setTranscript(DOMDocument $dom, DOMElement $root): void
    {
        /** @psalm-var null|array<string, string> $locked */
        $locked = $this->getDataContainer()->getPodcastIndexTranscript();
        if ($locked === null) {
            return;
        }
        $el = $dom->createElement('podcast:transcript');
        $el->setAttribute('url', $locked['url']);
        $el->setAttribute('type', $locked['type']);
        if (array_key_exists('language', $locked)) {
            $el->setAttribute('language', $locked['language']);
        }
        if (array_key_exists('rel', $locked)) {
            $el->setAttribute('rel', $locked['rel']);
        }
        $root->appendChild($el);
        $this->called = true;
    }

    /**
     * Set entry chapters
     */
    protected function setChapters(DOMDocument $dom, DOMElement $root): void
    {
        /** @psalm-var null|array<string, string> $chapters */
        $chapters = $this->getDataContainer()->getPodcastIndexChapters();
        if ($chapters === null) {
            return;
        }
        $el = $dom->createElement('podcast:chapters');
        $el->setAttribute('url', $chapters['url']);
        $el->setAttribute('type', $chapters['type']);
        $root->appendChild($el);
        $this->called = true;
    }

    /**
     * Set entry soundbites
     */
    protected function setSoundbites(DOMDocument $dom, DOMElement $root): void
    {
        /** @psalm-var null|list $soundbites */
        $soundbites = $this->getDataContainer()->getPodcastIndexSoundbites();
        if (! $soundbites) {
            return;
        }
        foreach ($soundbites as $soundbite) {
            /** @psalm-var array<string, string> $soundbite */
            $el = $dom->createElement('podcast:soundbite');
            if (array_key_exists('title', $soundbite)) {
                $text = $dom->createTextNode((string) $soundbite['title']);
                $el->appendChild($text);
            }
            $el->setAttribute('startTime', $soundbite['startTime']);
            $el->setAttribute('duration', $soundbite['duration']);
            $root->appendChild($el);
            $this->called = true;
        }
    }
}

Spamworldpro Mini