You are here

public function FrontendEnvironmentPluginCollection::__construct in Build Hooks 3.x

Same name and namespace in other branches
  1. 8.2 src/FrontendEnvironmentPluginCollection.php \Drupal\build_hooks\FrontendEnvironmentPluginCollection::__construct()

Constructs a new BlockPluginCollection.

Parameters

\Drupal\Component\Plugin\PluginManagerInterface $manager: The manager to be used for instantiating plugins.

string $instance_id: The ID of the plugin instance.

array $configuration: An array of configuration.

string $frontend_environment_id: The unique ID of the frontend environment entity using this plugin.

Overrides DefaultSingleLazyPluginCollection::__construct

File

src/FrontendEnvironmentPluginCollection.php, line 33

Class

FrontendEnvironmentPluginCollection
Provides a collection of front plugins.

Namespace

Drupal\build_hooks

Code

public function __construct(PluginManagerInterface $manager, $instance_id, array $configuration, $frontend_environment_id) {
  parent::__construct($manager, $instance_id, $configuration);
  $this->frontendEnvironmentId = $frontend_environment_id;
}