You are here

class EmptyPermissionProvider in Group 2.0.x

Provides a default group permissions handler.

In case a plugin does not define a handler, the empty class is used so that others can still decorate the plugin-specific service.

Hierarchy

Expanded class hierarchy of EmptyPermissionProvider

File

src/Plugin/Group/RelationHandler/EmptyPermissionProvider.php, line 11

Namespace

Drupal\group\Plugin\Group\RelationHandler
View source
class EmptyPermissionProvider implements PermissionProviderInterface {
  use PermissionProviderTrait;

  /**
   * Constructs a new EmptyPermissionProvider.
   *
   * @param \Drupal\group\Plugin\Group\RelationHandler\PermissionProviderInterface $parent
   *   The parent permission provider.
   */
  public function __construct(PermissionProviderInterface $parent) {
    $this->parent = $parent;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EmptyPermissionProvider::__construct public function Constructs a new EmptyPermissionProvider.
PermissionProviderTrait::$definesEntityPermissions protected property Whether the plugin defines permissions for the target entity type.
PermissionProviderTrait::$entityType protected property The entity type the plugin handler is for.
PermissionProviderTrait::$implementsOwnerInterface protected property Whether the target entity type implements the EntityOwnerInterface.
PermissionProviderTrait::$implementsPublishedInterface protected property Whether the target entity type implements the EntityPublishedInterface.
PermissionProviderTrait::buildPermission protected function Builds a permission with common translation arguments predefined.
PermissionProviderTrait::buildPermissions public function 4
PermissionProviderTrait::getAdminPermission public function 4
PermissionProviderTrait::getPermission public function 4
PermissionProviderTrait::init public function
RelationHandlerTrait::$definition protected property The plugin definition.
RelationHandlerTrait::$entityTypeManager protected property The entity type manager.
RelationHandlerTrait::$groupRelationManager protected property The group relation manager.
RelationHandlerTrait::$parent protected property The parent relation handler in the decorator chain.
RelationHandlerTrait::$pluginId protected property The plugin ID as read from the definition.
RelationHandlerTrait::entityTypeManager protected function Gets the entity type manager service.
RelationHandlerTrait::groupRelationManager protected function Gets the group relation manager service.
RelationHandlerTrait::init public function Aliased as: traitInit