Rss.php

Same filename in this branch
  1. 8.9.x core/modules/node/src/Plugin/views/row/Rss.php
  2. 8.9.x core/modules/views/src/Plugin/views/style/Rss.php
  3. 8.9.x core/modules/comment/src/Plugin/views/row/Rss.php
Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/views/row/Rss.php
  2. 9 core/modules/views/src/Plugin/views/style/Rss.php
  3. 9 core/modules/aggregator/src/Plugin/views/row/Rss.php
  4. 9 core/modules/comment/src/Plugin/views/row/Rss.php
  5. 10 core/modules/node/src/Plugin/views/row/Rss.php
  6. 10 core/modules/views/src/Plugin/views/style/Rss.php
  7. 10 core/modules/comment/src/Plugin/views/row/Rss.php
  8. 11.x core/modules/node/src/Plugin/views/row/Rss.php
  9. 11.x core/modules/views/src/Plugin/views/style/Rss.php
  10. 11.x core/modules/comment/src/Plugin/views/row/Rss.php

Namespace

Drupal\aggregator\Plugin\views\row

File

core/modules/aggregator/src/Plugin/views/row/Rss.php

View source
<?php

namespace Drupal\aggregator\Plugin\views\row;

use Drupal\views\Plugin\views\row\RssPluginBase;

/**
 * Defines a row plugin which loads an aggregator item and renders as RSS.
 *
 * @ViewsRow(
 *   id = "aggregator_rss",
 *   theme = "views_view_row_rss",
 *   title = @Translation("Aggregator item"),
 *   help = @Translation("Display the aggregator item using the data from the original source."),
 *   base = {"aggregator_item"},
 *   display_types = {"feed"}
 * )
 */
class Rss extends RssPluginBase {
    
    /**
     * The table the aggregator item is using for storage.
     *
     * @var string
     */
    public $base_table = 'aggregator_item';
    
    /**
     * The actual field which is used to identify a aggregator item.
     *
     * @var string
     */
    public $base_field = 'iid';
    
    /**
     * {@inheritdoc}
     */
    protected $entityTypeId = 'aggregator_item';
    
    /**
     * {@inheritdoc}
     */
    public function render($row) {
        $entity = $row->_entity;
        $item = new \stdClass();
        foreach ($entity as $name => $field) {
            $item->{$name} = $field->value;
        }
        $item->elements = [
            [
                'key' => 'pubDate',
                // views_view_row_rss takes care about the escaping.
'value' => gmdate('r', $entity->timestamp->value),
            ],
            [
                'key' => 'dc:creator',
                // views_view_row_rss takes care about the escaping.
'value' => $entity->author->value,
            ],
            [
                'key' => 'guid',
                // views_view_row_rss takes care about the escaping.
'value' => $entity->guid->value,
                'attributes' => [
                    'isPermaLink' => 'false',
                ],
            ],
        ];
        $build = [
            '#theme' => $this->themeFunctions(),
            '#view' => $this->view,
            '#options' => $this->options,
            '#row' => $item,
        ];
        return $build;
    }

}

Classes

Title Deprecated Summary
Rss Defines a row plugin which loads an aggregator item and renders as RSS.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.