You are here

NodeRow.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/views/row/NodeRow.php

File

core/modules/node/src/Plugin/views/row/NodeRow.php
View source
<?php

namespace Drupal\node\Plugin\views\row;

use Drupal\views\Plugin\views\row\EntityRow;

/**
 * Plugin which performs a node_view on the resulting object.
 *
 * Most of the code on this object is in the theme function.
 *
 * @ingroup views_row_plugins
 *
 * @ViewsRow(
 *   id = "entity:node",
 * )
 */
class NodeRow extends EntityRow {

  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['view_mode']['default'] = 'teaser';
    return $options;
  }

}

Classes

Namesort descending Description
NodeRow Plugin which performs a node_view on the resulting object.