class BarAdminPermissionProvider in Group 2.0.x
Alters admin permission for a specific plugin to original + 'bar'.
Hierarchy
- class \Drupal\group_test_plugin_alter\Plugin\Group\RelationHandler\BarAdminPermissionProvider implements PermissionProviderInterface uses PermissionProviderTrait
Expanded class hierarchy of BarAdminPermissionProvider
1 string reference to 'BarAdminPermissionProvider'
- group_test_plugin_alter.services.yml in tests/
modules/ group_test_plugin_alter/ group_test_plugin_alter.services.yml - tests/modules/group_test_plugin_alter/group_test_plugin_alter.services.yml
1 service uses BarAdminPermissionProvider
File
- tests/
modules/ group_test_plugin_alter/ src/ Plugin/ Group/ RelationHandler/ BarAdminPermissionProvider.php, line 11
Namespace
Drupal\group_test_plugin_alter\Plugin\Group\RelationHandlerView source
class BarAdminPermissionProvider implements PermissionProviderInterface {
use PermissionProviderTrait;
/**
* Constructs a new BarAdminPermissionProvider.
*
* @param \Drupal\group\Plugin\Group\RelationHandler\PermissionProviderInterface $parent
* The parent permission provider.
*/
public function __construct(PermissionProviderInterface $parent) {
$this->parent = $parent;
}
/**
* {@inheritdoc}
*/
public function getAdminPermission() {
return $this->parent
->getAdminPermission() . 'bar';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BarAdminPermissionProvider:: |
public | function |
Gets the name of the admin permission. Overrides PermissionProviderTrait:: |
|
BarAdminPermissionProvider:: |
public | function | Constructs a new BarAdminPermissionProvider. | |
PermissionProviderTrait:: |
protected | property | Whether the plugin defines permissions for the target entity type. | |
PermissionProviderTrait:: |
protected | property | The entity type the plugin handler is for. | |
PermissionProviderTrait:: |
protected | property | Whether the target entity type implements the EntityOwnerInterface. | |
PermissionProviderTrait:: |
protected | property | Whether the target entity type implements the EntityPublishedInterface. | |
PermissionProviderTrait:: |
protected | function | Builds a permission with common translation arguments predefined. | |
PermissionProviderTrait:: |
public | function | 4 | |
PermissionProviderTrait:: |
public | function | 4 | |
PermissionProviderTrait:: |
public | function | ||
RelationHandlerTrait:: |
protected | property | The plugin definition. | |
RelationHandlerTrait:: |
protected | property | The entity type manager. | |
RelationHandlerTrait:: |
protected | property | The group relation manager. | |
RelationHandlerTrait:: |
protected | property | The parent relation handler in the decorator chain. | |
RelationHandlerTrait:: |
protected | property | The plugin ID as read from the definition. | |
RelationHandlerTrait:: |
protected | function | Gets the entity type manager service. | |
RelationHandlerTrait:: |
protected | function | Gets the group relation manager service. | |
RelationHandlerTrait:: |
public | function | Aliased as: traitInit |