function ConditionConfigure::__construct

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

Constructor for Condition Configuration.

Parameters

\Drupal\Core\TempStore\SharedTempStoreFactory $tempstore: The Tempstore Factory.

\Drupal\Component\Plugin\PluginManagerInterface $manager: The Plugin Manager.

File

src/Form/ConditionConfigure.php, line 58

Class

ConditionConfigure
Base class for condition configur operations.

Namespace

Drupal\ctools\Form

Code

public function __construct(SharedTempStoreFactory $tempstore, PluginManagerInterface $manager) {
    $this->tempstore = $tempstore;
    $this->manager = $manager;
}