You are here

public function AssignmentExcludeForm::__construct in Features 8.4

Same name and namespace in other branches
  1. 8.3 modules/features_ui/src/Form/AssignmentExcludeForm.php \Drupal\features_ui\Form\AssignmentExcludeForm::__construct()

Constructs a AssignmentExcludeForm object.

Parameters

\Drupal\Core\Extension\ExtensionList $extension_list: The install profile extension list.

string $install_profile: The install profile.

\Drupal\features\FeaturesManagerInterface $features_manager: The features manager.

\Drupal\features\FeaturesAssignerInterface $assigner: The assigner.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides AssignmentFormBase::__construct

File

modules/features_ui/src/Form/AssignmentExcludeForm.php, line 48

Class

AssignmentExcludeForm
Configures the selected configuration assignment method for this site.

Namespace

Drupal\features_ui\Form

Code

public function __construct(FeaturesManagerInterface $features_manager, FeaturesAssignerInterface $assigner, EntityTypeManagerInterface $entity_type_manager, ExtensionList $profile_list, $install_profile) {
  parent::__construct($features_manager, $assigner, $entity_type_manager);
  $this->profileList = $profile_list;
  $this->installProfile = $install_profile;
}