You are here

public function AuditFilesNotOnServer::__construct in Audit Files 4.x

Same name and namespace in other branches
  1. 8.3 src/Form/AuditFilesNotOnServer.php \Drupal\auditfiles\Form\AuditFilesNotOnServer::__construct()
  2. 8.2 src/Form/AuditFilesNotOnServer.php \Drupal\auditfiles\Form\AuditFilesNotOnServer::__construct()

Class Constructor.

Parameters

Drupal\Core\Config\ConfigFactoryInterface $config_factory: Configuration service.

Drupal\auditfiles\ServiceAuditFilesNotOnServer $audit_files_nos: The auditfiles.not_on_server service.

Drupal\Core\Pager\PagerManagerInterface $pager_manager: Pager Manager service.

Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity Type Manager service.

File

src/Form/AuditFilesNotOnServer.php, line 64

Class

AuditFilesNotOnServer
Form for File not on server functionality.

Namespace

Drupal\auditfiles\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ServiceAuditFilesNotOnServer $audit_files_nos, PagerManagerInterface $pager_manager, EntityTypeManagerInterface $entity_type_manager) {
  $this->configFactoryStorage = $config_factory;
  $this->auditFilesNotOnServer = $audit_files_nos;
  $this->pagerManager = $pager_manager;
  $this->entityTypeManager = $entity_type_manager;
}