function DevelReinstall::__construct

Constructs a new DevelReinstall form.

Parameters

\Drupal\Core\Extension\ModuleInstallerInterface $module_installer: The module installer.

\Drupal\Core\Extension\ModuleExtensionList $extension_list_module: The module extension list.

File

src/Form/DevelReinstall.php, line 38

Class

DevelReinstall
Display a dropdown of installed modules with the option to reinstall them.

Namespace

Drupal\devel\Form

Code

public function __construct(ModuleInstallerInterface $module_installer, ModuleExtensionList $extension_list_module) {
    $this->moduleInstaller = $module_installer;
    $this->moduleExtensionList = $extension_list_module;
}