class Entity in Views (for Drupal 7) 8.3
Generic entity row plugin to provide a common base for all entity types.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\views\Plugin\views\PluginBase
- class \Drupal\views\Plugin\views\row\RowPluginBase
- class \Views\system\Plugin\views\row\Entity
- class \Drupal\views\Plugin\views\row\RowPluginBase
- class \Drupal\views\Plugin\views\PluginBase
Expanded class hierarchy of Entity
3 files declare their use of Entity
- View.php in lib/
Views/ node/ Plugin/ views/ row/ View.php - Definition of Views\node\Plugin\views\row\View.
- View.php in lib/
Views/ user/ Plugin/ views/ row/ View.php - Definition of Views\user\Plugin\views\row\View
- View.php in lib/
Views/ comment/ Plugin/ views/ row/ View.php - Definition of Views\comment\Plugin\views\row\View.
File
- lib/
Views/ system/ Plugin/ views/ row/ Entity.php, line 16 - Definition of Views\system\Plugin\views\row\Entity.
Namespace
Views\system\Plugin\views\rowView source
class Entity extends RowPluginBase {
protected $entityInfo1;
/**
* The table the entity is using for storage.
*
* @var string
*/
public $base_table;
/**
* The actual field which is used for the entity id.
*
* @var string
*/
public $base_field;
/**
* Stores the entity type of the result entities.
*
* @var string
*/
protected $entityType;
/**
* Contains the entity info of the entity type of this row plugin instance.
*
* @see entity_get_info
*/
protected $entityInfo;
/**
* Contains an array of render arrays, one for each rendered entity.
*
* @var array
*/
protected $build = array();
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::init().
*/
public function init(ViewExecutable $view, &$display, $options = NULL) {
parent::init($view, $display, $options);
$this->entityType = $this->definition['entity_type'];
$this->entityInfo = entity_get_info($this->entityType);
$this->base_table = $this->entityInfo['base table'];
$this->base_field = $this->entityInfo['entity keys']['id'];
}
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::defineOptions().
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['view_mode'] = array(
'default' => '',
);
return $options;
}
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::buildOptionsForm().
*/
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($form, $form_state);
$options = $this
->buildViewModeOptions();
$form['view_mode'] = array(
'#type' => 'select',
'#options' => $options,
'#title' => t('View mode'),
'#default_value' => $this->options['view_mode'],
);
}
/**
* Return the main options, which are shown in the summary title.
*/
protected function buildViewModeOptions() {
$options = array();
if (!empty($this->entityInfo['view modes'])) {
foreach ($this->entityInfo['view modes'] as $mode => $settings) {
$options[$mode] = $settings['label'];
}
}
return $options;
}
/**
* Overrides Drupal\views\Plugin\views\PluginBase::summaryTitle().
*/
public function summaryTitle() {
$options = $this
->buildViewModeOptions();
return check_plain($options[$this->options['view_mode']]);
}
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::pre_render().
*/
public function pre_render($result) {
parent::pre_render($result);
if ($result) {
// Get all entities which will be used to render in rows.
$entities = array();
foreach ($result as $row) {
$entity = $row->_entity;
$entity->view = $this->view;
$entities[$entity
->id()] = $entity;
}
// Prepare the render arrays for all rows.
$this->build = entity_view_multiple($entities, $this->options['view_mode']);
}
}
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::render().
*/
function render($row) {
$entity_id = $row->{$this->field_alias};
return drupal_render($this->build[$entity_id]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Entity:: |
public | property | The actual field which is used for the entity id. | |
Entity:: |
public | property | The table the entity is using for storage. | |
Entity:: |
protected | property | Contains an array of render arrays, one for each rendered entity. | |
Entity:: |
protected | property | Contains the entity info of the entity type of this row plugin instance. | |
Entity:: |
protected | property | ||
Entity:: |
protected | property | Stores the entity type of the result entities. | |
Entity:: |
public | function |
Overrides Drupal\views\Plugin\views\row\RowPluginBase::buildOptionsForm(). Overrides RowPluginBase:: |
2 |
Entity:: |
protected | function | Return the main options, which are shown in the summary title. | |
Entity:: |
protected | function |
Overrides Drupal\views\Plugin\views\row\RowPluginBase::defineOptions(). Overrides RowPluginBase:: |
3 |
Entity:: |
public | function |
Overrides Drupal\views\Plugin\views\row\RowPluginBase::init(). Overrides RowPluginBase:: |
|
Entity:: |
public | function |
Overrides Drupal\views\Plugin\views\row\RowPluginBase::pre_render(). Overrides RowPluginBase:: |
|
Entity:: |
function |
Overrides Drupal\views\Plugin\views\row\RowPluginBase::render(). Overrides RowPluginBase:: |
1 | |
Entity:: |
public | function |
Overrides Drupal\views\Plugin\views\PluginBase::summaryTitle(). Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
public | property | Plugins's definition | |
PluginBase:: |
public | property | The display object this plugin is for. | |
PluginBase:: |
public | property | Options for this plugin will be held here. | |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
public | property | The top object of a view. | 1 |
PluginBase:: |
public | function | Provide a list of additional theme functions for the theme information page | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function | Clears a plugin. | 2 |
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Return the human readable name of the display. | |
PluginBase:: |
protected | function | ||
PluginBase:: |
public | function | Provide a full list of possible theme templates used by this style. | 1 |
PluginBase:: |
public | function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | |
PluginBase:: |
public | function | Returns the usesOptions property. | 8 |
PluginBase:: |
public | function | Validate that the plugin is correct and can be saved. | 4 |
PluginBase:: |
public | function |
Constructs a Plugin object. Overrides PluginBase:: |
2 |
RowPluginBase:: |
protected | property | Does the row plugin support to add fields to it's output. | 2 |
RowPluginBase:: |
protected | property |
Overrides Drupal\views\Plugin\Plugin::$usesOptions. Overrides PluginBase:: |
|
RowPluginBase:: |
public | function |
Add anything to the query that we might need to. Overrides PluginBase:: |
|
RowPluginBase:: |
public | function |
Perform any necessary changes to the form values prior to storage.
There is no need for this function to actually store the data. Overrides PluginBase:: |
1 |
RowPluginBase:: |
function | Returns the usesFields property. | 2 | |
RowPluginBase:: |
public | function |
Validate the options form. Overrides PluginBase:: |