This repository was archived by the owner on Jan 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathEntityEmbedDisplayManager.php
More file actions
96 lines (85 loc) · 3.35 KB
/
EntityEmbedDisplayManager.php
File metadata and controls
96 lines (85 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* @file
* Contains \Drupal\entity_embed\EntityEmbedDisplay\EntityEmbedDisplayManager.
*/
namespace Drupal\entity_embed\EntityEmbedDisplay;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Component\Plugin\Exception\PluginException;
/**
* Provides an Entity embed display plugin manager.
*
* @see \Drupal\entity_embed\Annotation\EntityEmbedDisplay
* @see \Drupal\entity_embed\EntityEmbedDisplay\EntityEmbedDisplayInterface
*/
class EntityEmbedDisplayManager extends DefaultPluginManager implements EntityEmbedDisplayManagerInterface {
/**
* Constructs a new class instance.
*
* @param \Traversable $namespaces
* An object that implements \Traversable which contains the root paths
* keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler to invoke the alter hook with.
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/entity_embed/EntityEmbedDisplay', $namespaces, $module_handler, 'Drupal\entity_embed\EntityEmbedDisplay\EntityEmbedDisplayInterface', 'Drupal\entity_embed\Annotation\EntityEmbedDisplay');
$this->alterInfo('entity_embed_display_plugins');
$this->setCacheBackend($cache_backend, 'entity_embed_display_plugins');
}
/**
* Overrides DefaultPluginManager::processDefinition().
*/
public function processDefinition(&$definition, $plugin_id) {
$definition += array(
'entity_types' => FALSE,
);
if ($definition['entity_types'] !== FALSE && !is_array($definition['entity_types'])) {
$definition['entity_types'] = array($definition['entity_types']);
}
}
/**
* @{inheritdoc}
*/
public function getDefinitionsForContexts(array $contexts = array()) {
$definitions = $this->getDefinitions();
$valid_ids = array_filter(array_keys($definitions), function ($id) use ($contexts) {
try {
$display = $this->createInstance($id);
foreach ($contexts as $name => $value) {
$display->setContextValue($name, $value);
}
return $display->access();
}
catch (PluginException $e) {
return FALSE;
}
});
$definitions_for_context = array_intersect_key($definitions, array_flip($valid_ids));
$this->moduleHandler->alter('entity_embed_display_plugins_for_context', $definitions_for_context, $contexts);
return $definitions_for_context;
}
/**
* @{inheritdoc}
*/
public function getDefinitionOptionsForEntity(EntityInterface $entity) {
$definitions = $this->getDefinitionsForContexts(array('entity' => $entity));
return array_map(function ($definition) {
return (string) $definition['label'];
}, $definitions);
}
/**
* @{inheritdoc}
*/
public function getDefinitionOptionsForEntityType($entity_type) {
$definitions = $this->getDefinitionsForContexts(array('entity_type' => $entity_type));
return array_map(function ($definition) {
return (string) $definition['label'];
}, $definitions);
}
}