You are here

public function ViewEmbed::__construct in Dashboards with Layout Builder 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/Dashboard/ViewEmbed.php \Drupal\dashboards\Plugin\Dashboard\ViewEmbed::__construct()

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides DashboardBase::__construct

File

src/Plugin/Dashboard/ViewEmbed.php, line 35

Class

ViewEmbed
Show account info.

Namespace

Drupal\dashboards\Plugin\Dashboard

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, CacheBackendInterface $cache_backend, QueryInterface $query) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $cache_backend);
  $this->entityQuery = $query;
}