You are here

public function TaxonomyEntityIndexAdminReindexForm::__construct in Taxonomy Entity Index 8

Creates a TaxonomyEntityIndexAdminReindexForm form.

Parameters

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

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

File

src/Form/TaxonomyEntityIndexAdminReindexForm.php, line 38

Class

TaxonomyEntityIndexAdminReindexForm
Provides the reindex form.

Namespace

Drupal\taxonomy_entity_index\Form

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory) {
  $this->entityTypeManager = $entity_type_manager;
  $this->configFactory = $config_factory;
}