You are here

public function jDrupalResource::__construct in jDrupal 8.0.x

Constructs a Drupal\rest\Plugin\ResourceBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

array $serializer_formats: The available serialization formats.

\Psr\Log\LoggerInterface $logger: A logger instance.

Overrides ResourceBase::__construct

File

src/Plugin/rest/resource/jDrupalResource.php, line 68

Class

jDrupalResource
Provides a resource to get bundles by entity.

Namespace

Drupal\jDrupal\Plugin\rest\resource

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, array $serializer_formats, LoggerInterface $logger, EntityManagerInterface $entity_manager, AccountProxyInterface $current_user) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $serializer_formats, $logger);
  $this->entityManager = $entity_manager;
  $this->currentUser = $current_user;
}