public function CreateContent::__construct in Total Control Admin Dashboard 8.2
Same name and namespace in other branches
- 3.0.x src/Plugin/Block/CreateContent.php \Drupal\total_control\Plugin\Block\CreateContent::__construct()
Creates a CreateContent 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\Render\RendererInterface $renderer: The renderer service.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
\Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination: The redirect destination service.
\Drupal\Core\Session\AccountInterface $current_user: AccountProxy current user definition.
Overrides BlockPluginTrait::__construct
File
- src/
Plugin/ Block/ CreateContent.php, line 74
Class
- CreateContent
- Provides a 'Create content'.
Namespace
Drupal\total_control\Plugin\BlockCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, RendererInterface $renderer, EntityTypeManagerInterface $entity_type_manager, RedirectDestinationInterface $redirect_destination, AccountInterface $current_user) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->renderer = $renderer;
$this->entityTypeManager = $entity_type_manager;
$this->redirectDestination = $redirect_destination;
$this->currentUser = $current_user;
}