You are here

public function RemovalSettingsForm::__construct in General Data Protection Regulation 8.2

Same name and namespace in other branches
  1. 3.0.x modules/gdpr_tasks/src/Form/RemovalSettingsForm.php \Drupal\gdpr_tasks\Form\RemovalSettingsForm::__construct()

RemovalSettingsForm constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $configFactory: Config factory.

\Drupal\Core\File\FileSystemInterface $fileSystem: Filesystem.

Overrides ConfigFormBase::__construct

File

modules/gdpr_tasks/src/Form/RemovalSettingsForm.php, line 46

Class

RemovalSettingsForm
Settings form for GDPR Removal task.

Namespace

Drupal\gdpr_tasks\Form

Code

public function __construct(ConfigFactoryInterface $configFactory, FileSystemInterface $fileSystem) {
  parent::__construct($configFactory);
  $this->fileSystem = $fileSystem;
}