You are here

public function RestPermissions::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/RestPermissions.php \Drupal\rest\RestPermissions::__construct()

Constructs a new RestPermissions instance.

Parameters

\Drupal\rest\Plugin\Type\ResourcePluginManager $rest_plugin_manager: The rest resource plugin manager.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

File

core/modules/rest/src/RestPermissions.php, line 37

Class

RestPermissions
Provides rest module permissions.

Namespace

Drupal\rest

Code

public function __construct(ResourcePluginManager $rest_plugin_manager, EntityTypeManagerInterface $entity_type_manager) {
  $this->restPluginManager = $rest_plugin_manager;
  $this->resourceConfigStorage = $entity_type_manager
    ->getStorage('rest_resource_config');
}