Constructs a SettingsForm object.

Paramètres

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.

\Drupal\Core\Cache\CacheBackendInterface $cache: The JavaScript asset collection optimizer service.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager service.

Fichier

advagg_mod/src/Form/SettingsForm.php, line 54

Classe

SettingsForm
Configure advagg_mod settings for this site.

Namespace

Drupal\advagg_mod\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, CacheBackendInterface $cache, ModuleHandlerInterface $module_handler, LanguageManagerInterface $language_manager) {
    parent::__construct($config_factory);
    $this->cache = $cache;
    $this->moduleHandler = $module_handler;
    $this->languageManager = $language_manager;
}