You are here

public function VarbaseContentOverview::__construct in Varbase Total Control Dashboard 8.6

Same name and namespace in other branches
  1. 9.0.x src/Plugin/Block/VarbaseContentOverview.php \Drupal\varbase_total_control\Plugin\Block\VarbaseContentOverview::__construct()

Creates a VarbaseContentOverview block instance.

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.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.

\Drupal\Core\Database\Connection $connection: The database connection.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The translation manager.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Render\RendererInterface $renderer: The renderer service.

Overrides BlockPluginTrait::__construct

File

src/Plugin/Block/VarbaseContentOverview.php, line 85

Class

VarbaseContentOverview
Provides a 'Varbase Content Overview'.

Namespace

Drupal\varbase_total_control\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, ModuleHandlerInterface $module_handler, Connection $connection, TranslationInterface $string_translation, EntityTypeManagerInterface $entity_type_manager, RendererInterface $renderer) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->moduleHandler = $module_handler;
  $this->connection = $connection;
  $this->stringTranslation = $string_translation;
  $this->entityTypeManager = $entity_type_manager;
  $this->renderer = $renderer;
}