function Rss::render

Same name in this branch
  1. 9 core/modules/views/src/Plugin/views/style/Rss.php \Drupal\views\Plugin\views\style\Rss::render()
  2. 9 core/modules/aggregator/src/Plugin/views/row/Rss.php \Drupal\aggregator\Plugin\views\row\Rss::render()
  3. 9 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::render()
Same name and namespace in other branches
  1. 8.9.x core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::render()
  2. 8.9.x core/modules/views/src/Plugin/views/style/Rss.php \Drupal\views\Plugin\views\style\Rss::render()
  3. 8.9.x core/modules/aggregator/src/Plugin/views/row/Rss.php \Drupal\aggregator\Plugin\views\row\Rss::render()
  4. 8.9.x core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::render()
  5. 10 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::render()
  6. 10 core/modules/views/src/Plugin/views/style/Rss.php \Drupal\views\Plugin\views\style\Rss::render()
  7. 10 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::render()
  8. 11.x core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::render()
  9. 11.x core/modules/views/src/Plugin/views/style/Rss.php \Drupal\views\Plugin\views\style\Rss::render()
  10. 11.x core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::render()

Overrides RowPluginBase::render

File

core/modules/node/src/Plugin/views/row/Rss.php, line 73

Class

Rss
Performs a node_view on the resulting object and formats it as an RSS item.

Namespace

Drupal\node\Plugin\views\row

Code

public function render($row) {
    global $base_url;
    $nid = $row->{$this->field_alias};
    if (!is_numeric($nid)) {
        return;
    }
    $display_mode = $this->options['view_mode'];
    if ($display_mode == 'default') {
        $display_mode = \Drupal::config('system.rss')->get('items.view_mode');
    }
    // Load the specified node:
    
    /** @var \Drupal\node\NodeInterface $node */
    $node = $this->nodes[$nid];
    if (empty($node)) {
        return;
    }
    $node->rss_namespaces = [];
    $node->rss_elements = [
        [
            'key' => 'pubDate',
            'value' => gmdate('r', $node->getCreatedTime()),
        ],
        [
            'key' => 'dc:creator',
            'value' => $node->getOwner()
                ->getDisplayName(),
        ],
        [
            'key' => 'guid',
            'value' => $node->id() . ' at ' . $base_url,
            'attributes' => [
                'isPermaLink' => 'false',
            ],
        ],
    ];
    // The node gets built and modules add to or modify $node->rss_elements
    // and $node->rss_namespaces.
    $build_mode = $display_mode;
    $build = \Drupal::entityTypeManager()->getViewBuilder('node')
        ->view($node, $build_mode);
    unset($build['#theme']);
    if (!empty($node->rss_namespaces)) {
        $this->view->style_plugin->namespaces = array_merge($this->view->style_plugin->namespaces, $node->rss_namespaces);
    }
    $item = new \stdClass();
    if ($display_mode != 'title') {
        // We render node contents.
        $item->description = $build;
    }
    $item->title = $node->label();
    $item->link = $node->toUrl('canonical', [
        'absolute' => TRUE,
    ])
        ->toString();
    // Provide a reference so that the render call in
    // template_preprocess_views_view_row_rss() can still access it.
    $item->elements =& $node->rss_elements;
    $item->nid = $node->id();
    $build = [
        '#theme' => $this->themeFunctions(),
        '#view' => $this->view,
        '#options' => $this->options,
        '#row' => $item,
    ];
    return $build;
}

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