function ContextConfigure::__construct

Same name in other branches
  1. 4.0.x src/Form/ContextConfigure.php \Drupal\ctools\Form\ContextConfigure::__construct()

Configure Context Form constructor.

Parameters

\Drupal\Core\TempStore\SharedTempStoreFactory $tempstore: The tempstore factory.

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

File

src/Form/ContextConfigure.php, line 70

Class

ContextConfigure
Configure Context Form.

Namespace

Drupal\ctools\Form

Code

public function __construct(SharedTempStoreFactory $tempstore, EntityTypeManagerInterface $entity_type_manager) {
    $this->tempstore = $tempstore;
    $this->entityTypeManager = $entity_type_manager;
}