EntityIndex.php in Services 9.0.x
File
src/Plugin/Deriver/EntityIndex.php
View source
<?php
namespace Drupal\services\Plugin\Deriver;
use Drupal\ctools\Plugin\Deriver\EntityDeriverBase;
class EntityIndex extends EntityDeriverBase {
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type_id => $entity_type) {
$this->derivatives[$entity_type_id] = $base_plugin_definition;
$this->derivatives[$entity_type_id]['title'] = $this
->t('@label: Index', [
'@label' => $entity_type
->getLabel(),
]);
$this->derivatives[$entity_type_id]['description'] = $this
->t('Index of @entity_type_id objects.', [
'@entity_type_id' => $entity_type_id,
]);
$this->derivatives[$entity_type_id]['category'] = $this
->t('@label', [
'@label' => $entity_type
->getLabel(),
]);
$this->derivatives[$entity_type_id]['path'] = "{$entity_type_id}";
}
return $this->derivatives;
}
}