You are here

public static function PurgeConfigurationsForm::create in Easy Install 8.6

Same name and namespace in other branches
  1. 8.9 src/Form/PurgeConfigurationsForm.php \Drupal\easy_install\Form\PurgeConfigurationsForm::create()
  2. 8.10 src/Form/PurgeConfigurationsForm.php \Drupal\easy_install\Form\PurgeConfigurationsForm::create()
  3. 8.5 src/Form/PurgeConfigurationsForm.php \Drupal\easy_install\Form\PurgeConfigurationsForm::create()
  4. 8.7 src/Form/PurgeConfigurationsForm.php \Drupal\easy_install\Form\PurgeConfigurationsForm::create()
  5. 8.8 src/Form/PurgeConfigurationsForm.php \Drupal\easy_install\Form\PurgeConfigurationsForm::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides FormBase::create

File

src/Form/PurgeConfigurationsForm.php, line 69

Class

PurgeConfigurationsForm
Provides module installation interface.

Namespace

Drupal\easy_install\Form

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('module_handler'), $container
    ->get('module_installer'), $container
    ->get('keyvalue.expirable')
    ->get('easy_install_purgeconfigs'), $container
    ->get('access_manager'), $container
    ->get('current_user'), $container
    ->get('user.permissions'));
}