Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

NodeRow.php

Namespace

Drupal\node\Plugin\views\row

File

core/modules/node/src/Plugin/views/row/NodeRow.php

View source
<?php

namespace Drupal\node\Plugin\views\row;

use Drupal\views\Attribute\ViewsRow;
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
 */
class NodeRow extends EntityRow {
    
    /**
     * {@inheritdoc}
     */
    protected function defineOptions() {
        $options = parent::defineOptions();
        $options['view_mode']['default'] = 'teaser';
        return $options;
    }

}

Classes

Title Deprecated Summary
NodeRow Plugin which performs a node_view on the resulting object.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal