You are here

public function LinkCheckerAdminSettingsForm::__construct in Link checker 8

LinkCheckerAdminSettingsForm constructor.

Overrides ConfigFormBase::__construct

File

src/Form/LinkCheckerAdminSettingsForm.php, line 78

Class

LinkCheckerAdminSettingsForm
Configure Linkchecker settings for this site.

Namespace

Drupal\linkchecker\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, DateFormatterInterface $date_formatter, FilterPluginManager $plugin_manager_filter, LinkCheckerService $linkchecker_checker, LinkExtractorBatch $extractorBatch, LinkCleanUp $linkCleanUp, UserStorageInterface $user_storage, LinkCheckerResponseCodesInterface $linkCheckerResponseCodes) {
  parent::__construct($config_factory);
  $this->dateFormatter = $date_formatter;
  $this->extractorBatch = $extractorBatch;
  $this->linkCleanUp = $linkCleanUp;
  $this->linkCheckerService = $linkchecker_checker;
  $this->filterPluginManager = $plugin_manager_filter;
  $this->userStorage = $user_storage;
  $this->linkCheckerResponseCodes = $linkCheckerResponseCodes;
}