You are here

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

Same name and namespace in other branches
  1. 8 src/Plugin/Dashboard/Account.php \Drupal\dashboards\Plugin\Dashboard\Account::__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/Account.php, line 49

Class

Account
Show account info.

Namespace

Drupal\dashboards\Plugin\Dashboard

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, CacheBackendInterface $cache, AccountInterface $account, EntityDisplayRepositoryInterface $entity_display_repository, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $cache);
  $this->account = $account;
  $this->entityDisplayRepository = $entity_display_repository;
  $this->entityTypeManager = $entity_type_manager;
}