You are here

public function GroupContentEnablerManager::getAccessControlHandler in Group 8

Creates a new access control handler instance.

Parameters

string $plugin_id: The plugin ID for this access control handler.

Return value

\Drupal\group\plugin\GroupContentAccessControlHandlerInterface An access control handler instance.

Throws

\Drupal\Component\Plugin\Exception\PluginNotFoundException Thrown if the plugin doesn't exist.

\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException Thrown if the access control handler couldn't be loaded.

Overrides GroupContentEnablerManagerInterface::getAccessControlHandler

File

src/Plugin/GroupContentEnablerManager.php, line 165

Class

GroupContentEnablerManager
Manages GroupContentEnabler plugin implementations.

Namespace

Drupal\group\Plugin

Code

public function getAccessControlHandler($plugin_id) {
  return $this
    ->getHandler($plugin_id, 'access');
}