1 | <?php |
||
16 | class EmbedTypeManager extends DefaultPluginManager { |
||
17 | |||
18 | /** |
||
19 | * Constructs a EmbedTypeManager object. |
||
20 | * |
||
21 | * @param \Traversable $namespaces |
||
22 | * An object that implements \Traversable which contains the root paths |
||
23 | * keyed by the corresponding namespace to look for plugin implementations. |
||
24 | * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend |
||
25 | * Cache backend instance to use. |
||
26 | * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler |
||
27 | * The module handler to invoke the alter hook with. |
||
28 | */ |
||
29 | public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { |
||
34 | |||
35 | /** |
||
36 | * Provides a list of plugins suitable for form options. |
||
37 | * |
||
38 | * @return array |
||
39 | * An array of valid plugin labels, keyed by plugin ID. |
||
40 | */ |
||
41 | public function getDefinitionOptions() { |
||
48 | |||
49 | } |
||
50 |