DsEntityRow.php in Display Suite 8.4
File
src/Plugin/Derivative/DsEntityRow.php
View source
<?php
namespace Drupal\ds\Plugin\Derivative;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Drupal\views\ViewsData;
use Symfony\Component\DependencyInjection\ContainerInterface;
class DsEntityRow implements ContainerDeriverInterface {
protected $derivatives = [];
protected $basePluginId;
protected $entityTypeManager;
protected $viewsData;
public function __construct($base_plugin_id, EntityTypeManagerInterface $entity_type_manager, ViewsData $views_data) {
$this->basePluginId = $base_plugin_id;
$this->entityTypeManager = $entity_type_manager;
$this->viewsData = $views_data;
}
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($base_plugin_id, $container
->get('entity_type.manager'), $container
->get('views.views_data'));
}
public function getDerivativeDefinition($derivative_id, $base_plugin_definition) {
if (!empty($this->derivatives) && !empty($this->derivatives[$derivative_id])) {
return $this->derivatives[$derivative_id];
}
$this
->getDerivativeDefinitions($base_plugin_definition);
return $this->derivatives[$derivative_id];
}
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
if (($base_table = $entity_type
->getBaseTable()) && $this->viewsData
->get($base_table) && $this->entityTypeManager
->hasHandler($entity_type_id, 'view_builder')) {
$this->derivatives[$entity_type_id] = [
'id' => 'ds_entity:' . $entity_type_id,
'provider' => 'ds',
'title' => 'Display Suite: ' . $entity_type
->getLabel(),
'help' => t('Display the @label', [
'@label' => $entity_type
->getLabel(),
]),
'base' => [
$entity_type
->getDataTable() ?: $entity_type
->getBaseTable(),
],
'entity_type' => $entity_type_id,
'display_types' => [
'normal',
],
'class' => $base_plugin_definition['class'],
];
}
}
return $this->derivatives;
}
}
Classes
Name |
Description |
DsEntityRow |
Provides DS views row plugin definitions for all non-special entity types. |