You are here

public function FileUploadResource::__construct in Drupal 8

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

Constructs a FileUploadResource instance.

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.

\Drupal\Core\File\FileSystemInterface $file_system: The file system service.

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

\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.

\Drupal\Core\Session\AccountInterface $current_user: The currently authenticated user.

\Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface $mime_type_guesser: The MIME type guesser.

\Drupal\Core\Utility\Token $token: The token replacement instance.

\Drupal\Core\Lock\LockBackendInterface $lock: The lock service.

\Drupal\Core\Config\Config $system_file_config: The system file configuration.

Overrides ResourceBase::__construct

File

core/modules/file/src/Plugin/rest/resource/FileUploadResource.php, line 159

Class

FileUploadResource
File upload resource.

Namespace

Drupal\file\Plugin\rest\resource

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, $serializer_formats, LoggerInterface $logger, FileSystemInterface $file_system, EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager, AccountInterface $current_user, MimeTypeGuesserInterface $mime_type_guesser, Token $token, LockBackendInterface $lock, Config $system_file_config) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $serializer_formats, $logger);
  $this->fileSystem = $file_system;
  $this->entityTypeManager = $entity_type_manager;
  $this->entityFieldManager = $entity_field_manager;
  $this->currentUser = $current_user;
  $this->mimeTypeGuesser = $mime_type_guesser;
  $this->token = $token;
  $this->lock = $lock;
  $this->systemFileConfig = $system_file_config;
}