Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 27 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
EntityOverrideViewLocalTask | |
0.00% |
0 / 27 |
|
0.00% |
0 / 3 |
42 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
create | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 | |||
getDerivativeDefinitions | |
0.00% |
0 / 20 |
|
0.00% |
0 / 1 |
20 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace Drupal\display_builder_entity_view\Plugin\Derivative; |
6 | |
7 | use Drupal\Component\Plugin\Derivative\DeriverBase; |
8 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
9 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
10 | use Drupal\Core\Routing\RouteProviderInterface; |
11 | use Drupal\Core\StringTranslation\StringTranslationTrait; |
12 | use Drupal\Core\StringTranslation\TranslationInterface; |
13 | use Drupal\Core\Theme\ComponentPluginManager; |
14 | use Drupal\display_builder_entity_view\Entity\EntityViewDisplay; |
15 | use Symfony\Component\DependencyInjection\ContainerInterface; |
16 | |
17 | /** |
18 | * Provides local task definitions for all component forms. |
19 | */ |
20 | class EntityOverrideViewLocalTask extends DeriverBase implements ContainerDeriverInterface { |
21 | |
22 | use StringTranslationTrait; |
23 | |
24 | public function __construct(protected RouteProviderInterface $routeProvider, protected ComponentPluginManager $componentPluginManager, protected EntityTypeManagerInterface $entityTypeManager, TranslationInterface $stringTranslation) { |
25 | $this->setStringTranslation($stringTranslation); |
26 | } |
27 | |
28 | /** |
29 | * {@inheritdoc} |
30 | */ |
31 | public static function create(ContainerInterface $container, $base_plugin_id): static { |
32 | return new static( |
33 | $container->get('router.route_provider'), |
34 | $container->get('plugin.manager.sdc'), |
35 | $container->get('entity_type.manager'), |
36 | $container->get('string_translation') |
37 | ); |
38 | } |
39 | |
40 | /** |
41 | * {@inheritdoc} |
42 | */ |
43 | public function getDerivativeDefinitions($base_plugin_definition): array { |
44 | $this->derivatives = []; |
45 | $display_infos = EntityViewDisplay::getDisplayInfos($this->entityTypeManager); |
46 | |
47 | foreach ($display_infos as $entity_type_id => $display_info) { |
48 | $forward = \sprintf('entity.%s.display_builder.forward', $entity_type_id); |
49 | // We add the "Display" tab alongside View, Edit, Delete, Revisions... |
50 | $this->derivatives[$forward] = [ |
51 | 'route_name' => $forward, |
52 | 'base_route' => \sprintf('entity.%s.canonical', $entity_type_id), |
53 | 'title' => \count($display_info['modes']) === 1 ? $this->t(':display display', [':display' => \reset($display_info['modes'])]) : $this->t('Display'), |
54 | // In-between 'Edit' and 'Delete'. |
55 | 'weight' => 10, |
56 | ]; |
57 | |
58 | // Second level: each tab is a display override. |
59 | $parent_id = \sprintf('display_builder_entity_view.display_builder_tabs:entity.%s.display_builder.forward', $entity_type_id); |
60 | |
61 | foreach ($display_info['modes'] as $view_mode => $view_mode_label) { |
62 | $route = \sprintf('entity.%s.display_builder.%s', $entity_type_id, $view_mode); |
63 | $this->derivatives[$route] = [ |
64 | 'route_name' => $route, |
65 | 'base_route' => $forward, |
66 | 'title' => $view_mode_label, |
67 | 'parent_id' => $parent_id, |
68 | ]; |
69 | } |
70 | } |
71 | |
72 | return $this->derivatives; |
73 | } |
74 | |
75 | } |