You are here

public function AuditFilesUsedNotManaged::__construct in Audit Files 8.3

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

Class constructor.

Parameters

Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration service.

Drupal\auditfiles\ServiceAuditFilesUsedNotManaged $files_used_not_managed: The auditfiles.used_not_managed service.

Drupal\Core\Pager\PagerManagerInterface $pager_manager: The pager.manager service.

File

src/Form/AuditFilesUsedNotManaged.php, line 51

Class

AuditFilesUsedNotManaged
Class for file used but not managed.

Namespace

Drupal\auditfiles\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ServiceAuditFilesUsedNotManaged $files_used_not_managed, PagerManagerInterface $pager_manager) {
  $this->configFactoryStorage = $config_factory;
  $this->filesUsedNotManaged = $files_used_not_managed;
  $this->pagerManager = $pager_manager;
}