class EntityViewDeriver
Same name in other branches
- 4.0.x src/Plugin/Deriver/EntityViewDeriver.php \Drupal\ctools\Plugin\Deriver\EntityViewDeriver
Provides entity view block definitions for each entity type.
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements \Drupal\Component\Plugin\Derivative\DeriverInterface
- class \Drupal\ctools\Plugin\Deriver\EntityDeriverBase extends \Drupal\Component\Plugin\Derivative\DeriverBase implements \Drupal\Core\Plugin\Discovery\ContainerDeriverInterface uses \Drupal\Core\StringTranslation\StringTranslationTrait
- class \Drupal\ctools\Plugin\Deriver\EntityViewDeriver extends \Drupal\ctools\Plugin\Deriver\EntityDeriverBase
- class \Drupal\ctools\Plugin\Deriver\EntityDeriverBase extends \Drupal\Component\Plugin\Derivative\DeriverBase implements \Drupal\Core\Plugin\Discovery\ContainerDeriverInterface uses \Drupal\Core\StringTranslation\StringTranslationTrait
Expanded class hierarchy of EntityViewDeriver
File
-
src/
Plugin/ Deriver/ EntityViewDeriver.php, line 10
Namespace
Drupal\ctools\Plugin\DeriverView source
class EntityViewDeriver extends EntityDeriverBase {
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
if ($entity_type->hasViewBuilderClass()) {
$this->derivatives[$entity_type_id] = $base_plugin_definition;
$this->derivatives[$entity_type_id]['admin_label'] = $this->t('Entity view (@label)', [
'@label' => $entity_type->getLabel(),
]);
$this->derivatives[$entity_type_id]['context_definitions'] = [
'entity' => new EntityContextDefinition('entity:' . $entity_type_id),
];
}
}
return $this->derivatives;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
DeriverBase::$derivatives | protected | property | List of derivative definitions. | 1 | |
DeriverBase::getDerivativeDefinition | public | function | Gets the definition of a derivative plugin. | Overrides DeriverInterface::getDerivativeDefinition | |
EntityDeriverBase::$entityFieldManager | protected | property | The entity field manager. | ||
EntityDeriverBase::$entityTypeManager | protected | property | The entity type manager. | ||
EntityDeriverBase::$entityTypeRepository | protected | property | The entity type repository. | ||
EntityDeriverBase::create | public static | function | Creates a new class instance. | Overrides ContainerDeriverInterface::create | |
EntityDeriverBase::__construct | public | function | Constructs new EntityViewDeriver. | ||
EntityViewDeriver::getDerivativeDefinitions | public | function | Gets the definition of all derivatives of a base plugin. | Overrides DeriverBase::getDerivativeDefinitions | |
StringTranslationTrait::$stringTranslation | protected | property | The string translation service. | 3 | |
StringTranslationTrait::formatPlural | protected | function | Formats a string containing a count of items. | ||
StringTranslationTrait::getNumberOfPlurals | protected | function | Returns the number of plurals supported by a given language. | ||
StringTranslationTrait::getStringTranslation | protected | function | Gets the string translation service. | ||
StringTranslationTrait::setStringTranslation | public | function | Sets the string translation service to use. | 2 | |
StringTranslationTrait::t | protected | function | Translates a string to the current language or to a given language. |