public function ConfigForm::__construct in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/Form/ConfigForm.php \Drupal\webprofiler\Form\ConfigForm::__construct()
- 8.2 webprofiler/src/Form/ConfigForm.php \Drupal\webprofiler\Form\ConfigForm::__construct()
- 4.x webprofiler/src/Form/ConfigForm.php \Drupal\webprofiler\Form\ConfigForm::__construct()
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory:
Profiler $profiler:
\Drupal\webprofiler\Profiler\ProfilerStorageManager $storageManager:
array $templates:
Overrides ConfigFormBase::__construct
File
- webprofiler/
src/ Form/ ConfigForm.php, line 50
Class
- ConfigForm
- Class ConfigForm
Namespace
Drupal\webprofiler\FormCode
public function __construct(ConfigFactoryInterface $config_factory, Profiler $profiler, ProfilerStorageManager $storageManager, $templates) {
parent::__construct($config_factory);
$this->profiler = $profiler;
$this->templates = $templates;
$this->storageManager = $storageManager;
}