public function MostReaded::__construct in Dashboards with Layout Builder 8
Same name and namespace in other branches
- 2.0.x modules/dashboards_statistic/src/Plugin/Dashboard/MostReaded.php \Drupal\dashboards_statistic\Plugin\Dashboard\MostReaded::__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
- modules/
dashboards_statistic/ src/ Plugin/ Dashboard/ MostReaded.php, line 52
Class
- MostReaded
- Show account info.
Namespace
Drupal\dashboards_statistic\Plugin\DashboardCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, CacheBackendInterface $cache_backend, EntityTypeBundleInfoInterface $entity_type_info, ModuleHandlerInterface $module_handler, Connection $database) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $cache_backend);
$this->entityTypeInfo = $entity_type_info;
$this->moduleHandler = $module_handler;
$this->database = $database;
}