Same name in other branches
- 8.x-3.x src/Form/OperationsForm.php \Drupal\advagg\Form\OperationsForm::__construct()
Constructs the OperationsForm object.
Paramètres
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
\Drupal\Core\PrivateKey $private_key: The private key service.
\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The Date formatter service.
\Drupal\Core\Asset\AssetCollectionOptimizerInterface $css_collection_optimizer: The CSS asset collection optimizer service.
\Drupal\Core\Asset\AssetCollectionOptimizerInterface $js_collection_optimizer: The JavaScript asset collection optimizer service.
\Drupal\Core\State\StateInterface $advagg_files: A state information store for the AdvAgg scanned files.
\Drupal\Core\State\StateInterface $advagg_aggregates: A state information store for the AdvAgg generated aggregates.
Fichier
-
src/
Form/ OperationsForm.php, line 81
Classe
- OperationsForm
- Configure advagg settings for this site.
Namespace
Drupal\advagg\FormCode
public function __construct(ConfigFactoryInterface $config_factory, PrivateKey $private_key, DateFormatterInterface $date_formatter, AssetCollectionOptimizerInterface $css_collection_optimizer, AssetCollectionOptimizerInterface $js_collection_optimizer, StateInterface $advagg_files, StateInterface $advagg_aggregates) {
parent::__construct($config_factory);
$this->privateKey = $private_key;
$this->dateFormatter = $date_formatter;
$this->cssCollectionOptimizer = $css_collection_optimizer;
$this->jsCollectionOptimizer = $js_collection_optimizer;
$this->advaggFiles = $advagg_files;
$this->advaggAggregates = $advagg_aggregates;
}