Same filename in this branch
  1. 8.9.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
  2. 8.9.x core/modules/entity_reference/src/Plugin/views/display/EntityReference.php
  3. 8.9.x core/modules/entity_reference/src/Plugin/views/row/EntityReference.php
  4. 8.9.x core/modules/entity_reference/src/Plugin/views/style/EntityReference.php
  5. 8.9.x core/modules/views/src/Plugin/views/display/EntityReference.php
  6. 8.9.x core/modules/views/src/Plugin/views/row/EntityReference.php
  7. 8.9.x core/modules/views/src/Plugin/views/style/EntityReference.php
  8. 8.9.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
  9. 8.9.x core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php
Same filename and directory in other branches
  1. 10 core/modules/views/src/Plugin/views/row/EntityReference.php
  2. 9 core/modules/views/src/Plugin/views/row/EntityReference.php

Namespace

Drupal\views\Plugin\views\row

File

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

namespace Drupal\views\Plugin\views\row;

use Drupal\Core\Form\FormStateInterface;

/**
 * EntityReference row plugin.
 *
 * @ingroup views_row_plugins
 *
 * @ViewsRow(
 *   id = "entity_reference",
 *   title = @Translation("Entity Reference inline fields"),
 *   help = @Translation("Displays the fields with an optional template."),
 *   theme = "views_view_fields",
 *   register_theme = FALSE,
 *   display_types = {"entity_reference"}
 * )
 */
class EntityReference extends Fields {

  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['separator'] = [
      'default' => '-',
    ];
    return $options;
  }

  /**
   * {@inheritdoc}
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    parent::buildOptionsForm($form, $form_state);

    // Expand the description of the 'Inline field' checkboxes.
    $form['inline']['#description'] .= '<br />' . $this
      ->t("<strong>Note:</strong> In 'Entity Reference' displays, all fields will be displayed inline unless an explicit selection of inline fields is made here.");
  }

  /**
   * {@inheritdoc}
   */
  public function preRender($row) {

    // Force all fields to be inline by default.
    if (empty($this->options['inline'])) {
      $fields = $this->view
        ->getHandlers('field', $this->displayHandler->display['id']);
      $names = array_keys($fields);
      $this->options['inline'] = array_combine($names, $names);
    }
    return parent::preRender($row);
  }

}

Classes

Namesort descending Description
EntityReference EntityReference row plugin.