You are here

class Feed in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/zendframework/zend-feed/src/Writer/Feed.php \Zend\Feed\Writer\Feed
  2. 8.0 core/modules/aggregator/src/Entity/Feed.php \Drupal\aggregator\Entity\Feed
  3. 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/Syndication/Feed.php \Zend\Feed\Reader\Extension\Syndication\Feed
  4. 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/Atom/Feed.php \Zend\Feed\Reader\Extension\Atom\Feed
  5. 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/Podcast/Feed.php \Zend\Feed\Reader\Extension\Podcast\Feed
  6. 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/DublinCore/Feed.php \Zend\Feed\Reader\Extension\DublinCore\Feed
  7. 8.0 vendor/zendframework/zend-feed/src/Reader/Extension/CreativeCommons/Feed.php \Zend\Feed\Reader\Extension\CreativeCommons\Feed
  8. 8.0 vendor/zendframework/zend-feed/src/Writer/Extension/ITunes/Feed.php \Zend\Feed\Writer\Extension\ITunes\Feed
  9. 8.0 core/modules/views/src/Plugin/views/display/Feed.php \Drupal\views\Plugin\views\display\Feed
  10. 8.0 vendor/zendframework/zend-feed/src/Writer/Extension/Atom/Renderer/Feed.php \Zend\Feed\Writer\Extension\Atom\Renderer\Feed
  11. 8.0 vendor/zendframework/zend-feed/src/Writer/Extension/DublinCore/Renderer/Feed.php \Zend\Feed\Writer\Extension\DublinCore\Renderer\Feed
  12. 8.0 vendor/zendframework/zend-feed/src/Writer/Extension/ITunes/Renderer/Feed.php \Zend\Feed\Writer\Extension\ITunes\Renderer\Feed
Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/Reader/Extension/CreativeCommons/Feed.php \Zend\Feed\Reader\Extension\CreativeCommons\Feed

Hierarchy

  • class \Zend\Feed\Reader\Extension\CreativeCommons\Feed extends \Extension\AbstractFeed

Expanded class hierarchy of Feed

18 string references to 'Feed'
aggregator.schema.yml in core/modules/aggregator/config/schema/aggregator.schema.yml
core/modules/aggregator/config/schema/aggregator.schema.yml
ExtensionPluginManager::validatePlugin in vendor/zendframework/zend-feed/src/Writer/ExtensionPluginManager.php
Validate the plugin
PreviewTest::testPreviewUI in core/modules/views_ui/src/Tests/PreviewTest.php
Tests arguments in the preview form.
views.view.aggregator_rss_feed.yml in core/modules/aggregator/config/optional/views.view.aggregator_rss_feed.yml
core/modules/aggregator/config/optional/views.view.aggregator_rss_feed.yml
views.view.aggregator_sources.yml in core/modules/aggregator/config/optional/views.view.aggregator_sources.yml
core/modules/aggregator/config/optional/views.view.aggregator_sources.yml

... See full list

File

vendor/zendframework/zend-feed/src/Reader/Extension/CreativeCommons/Feed.php, line 14

Namespace

Zend\Feed\Reader\Extension\CreativeCommons
View source
class Feed extends Extension\AbstractFeed {

  /**
   * Get the entry license
   *
   * @param int $index
   * @return string|null
   */
  public function getLicense($index = 0) {
    $licenses = $this
      ->getLicenses();
    if (isset($licenses[$index])) {
      return $licenses[$index];
    }
    return;
  }

  /**
   * Get the entry licenses
   *
   * @return array
   */
  public function getLicenses() {
    $name = 'licenses';
    if (array_key_exists($name, $this->data)) {
      return $this->data[$name];
    }
    $licenses = [];
    $list = $this->xpath
      ->evaluate('channel/cc:license');
    if ($list->length) {
      foreach ($list as $license) {
        $licenses[] = $license->nodeValue;
      }
      $licenses = array_unique($licenses);
    }
    $this->data[$name] = $licenses;
    return $this->data[$name];
  }

  /**
   * Register Creative Commons namespaces
   *
   * @return void
   */
  protected function registerNamespaces() {
    $this->xpath
      ->registerNamespace('cc', 'http://backend.userland.com/creativeCommonsRssModule');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Feed::getLicense public function Get the entry license
Feed::getLicenses public function Get the entry licenses
Feed::registerNamespaces protected function Register Creative Commons namespaces