class GroupMenuBlock in Group Content Menu 8
Same name in this branch
- 8 src/Plugin/Derivative/GroupMenuBlock.php \Drupal\group_content_menu\Plugin\Derivative\GroupMenuBlock
- 8 src/Plugin/Block/GroupMenuBlock.php \Drupal\group_content_menu\Plugin\Block\GroupMenuBlock
Provides block plugin definitions for custom menus.
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements DeriverInterface
- class \Drupal\group_content_menu\Plugin\Derivative\GroupMenuBlock implements ContainerDeriverInterface
Expanded class hierarchy of GroupMenuBlock
File
- src/
Plugin/ Derivative/ GroupMenuBlock.php, line 13
Namespace
Drupal\group_content_menu\Plugin\DerivativeView source
class GroupMenuBlock extends DeriverBase implements ContainerDeriverInterface {
/**
* The menu storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $menuStorage;
/**
* Constructs new SystemMenuBlock.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $menu_storage
* The menu storage.
*/
public function __construct(EntityStorageInterface $menu_storage) {
$this->menuStorage = $menu_storage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager')
->getStorage('group_content_menu_type'));
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->menuStorage
->loadMultiple() as $entity) {
$this->derivatives[$entity
->id()] = $base_plugin_definition;
$this->derivatives[$entity
->id()]['admin_label'] = $entity
->label();
$this->derivatives[$entity
->id()]['config_dependencies']['config'] = [
$entity
->getConfigDependencyName(),
];
}
return $this->derivatives;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DeriverBase:: |
protected | property | List of derivative definitions. | 1 |
DeriverBase:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |
|
GroupMenuBlock:: |
protected | property | The menu storage. | |
GroupMenuBlock:: |
public static | function |
Creates a new class instance. Overrides ContainerDeriverInterface:: |
|
GroupMenuBlock:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverBase:: |
|
GroupMenuBlock:: |
public | function | Constructs new SystemMenuBlock. |