You are here

public function WebformOptionsCustomDeriverBase::__construct in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_options_custom/src/Plugin/Derivative/WebformOptionsCustomDeriverBase.php \Drupal\webform_options_custom\Plugin\Derivative\WebformOptionsCustomDeriverBase::__construct()

Constructs new WebformReusableCompositeDeriver.

Parameters

\Drupal\Core\Config\Entity\ConfigEntityStorageInterface $webform_options_custom_storage: The Dynamic Composite storage.

File

modules/webform_options_custom/src/Plugin/Derivative/WebformOptionsCustomDeriverBase.php, line 38

Class

WebformOptionsCustomDeriverBase
Provides base class for webform custom options derivers.

Namespace

Drupal\webform_options_custom\Plugin\Derivative

Code

public function __construct(ConfigEntityStorageInterface $webform_options_custom_storage) {
  $this->optionsCustomStorage = $webform_options_custom_storage;
}