You are here

public function PrivateMessageActionsBlock::__construct in Private Message 8

Same name and namespace in other branches
  1. 8.2 src/Plugin/Block/PrivateMessageActionsBlock.php \Drupal\private_message\Plugin\Block\PrivateMessageActionsBlock::__construct()

Constructs a PrivateMessageForm object.

Parameters

array $configuration: The block configuration.

string $plugin_id: The ID of the plugin.

mixed $plugin_definition: The plugin definition.

\Drupal\Core\Session\AccountProxyInterface $currentUser: The current user.

\Drupal\Core\Routing\ResettableStackedRouteMatchInterface $currentRouteMatcher: The current route matcher.

Overrides BlockPluginTrait::__construct

File

src/Plugin/Block/PrivateMessageActionsBlock.php, line 54

Class

PrivateMessageActionsBlock
Provides the private message actions block.

Namespace

Drupal\private_message\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, AccountProxyInterface $currentUser, ResettableStackedRouteMatchInterface $currentRouteMatcher) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->currentUser = $currentUser;
  $this->currentRouteMatcher = $currentRouteMatcher;
}