Same name in other branches
- 8.x-3.x src/Form/AdvaggFormBase.php \Drupal\advagg\Form\AdvaggFormBase::__construct()
Constructs a SettingsForm object.
Paramètres
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\State\StateInterface $advagg_files: The AdvAgg file status state information storage service.
\Drupal\Core\State\StateInterface $advagg_aggregates: The AdvAgg aggregate state information storage service.
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.
1 method overrides AdvaggFormBase::__construct()
- CssW3Form::__construct dans advagg_validator/
src/ Form/ CssW3Form.php
Fichier
-
src/
Form/ AdvaggFormBase.php, line 50
Classe
- AdvaggFormBase
- View AdvAgg information for this site.
Namespace
Drupal\advagg\FormCode
public function __construct(ConfigFactoryInterface $config_factory, StateInterface $advagg_files, StateInterface $advagg_aggregates, RequestStack $request_stack) {
parent::__construct($config_factory);
$this->advaggFiles = $advagg_files;
$this->advaggAggregates = $advagg_aggregates;
$this->requestStack = $request_stack;
}