EntityReference.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/row/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/display/EntityReference.php
- 8.9.x core/modules/views/src/Plugin/views/style/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/row/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/display/EntityReference.php
- 8.9.x core/modules/entity_reference/src/Plugin/views/style/EntityReference.php
- 8.9.x core/lib/Drupal/Core/Field/Plugin/migrate/field/d7/EntityReference.php
- 8.9.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 10 core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 10 core/modules/views/src/Plugin/views/row/EntityReference.php
- 10 core/modules/views/src/Plugin/views/display/EntityReference.php
- 10 core/modules/views/src/Plugin/views/style/EntityReference.php
- 10 core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 11.x core/modules/field/src/Plugin/migrate/field/d7/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/row/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/display/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/style/EntityReference.php
- 11.x core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
- 11.x core/modules/views/src/Plugin/views/filter/EntityReference.php
Namespace
Drupal\views\Plugin\views\rowFile
-
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
Title | Deprecated | Summary |
---|---|---|
EntityReference | EntityReference row plugin. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.