1 | <?php |
||
12 | class EntityBundleDeriver extends DeriverBase implements ContainerDeriverInterface { |
||
13 | use StringTranslationTrait; |
||
14 | |||
15 | /** |
||
16 | * The entity type manager service. |
||
17 | * |
||
18 | * @var \Drupal\Core\Entity\EntityTypeManagerInterface |
||
19 | */ |
||
20 | protected $entityTypeManager; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public static function create(ContainerInterface $container, $basePluginId) { |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function __construct(EntityTypeManagerInterface $entityTypeManager) { |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getDerivativeDefinitions($basePluginDefinition) { |
||
56 | |||
57 | } |
||
58 |