You are here

public function ForwardLinkBlock::__construct in Forward 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/Block/ForwardLinkBlock.php \Drupal\forward\Plugin\Block\ForwardLinkBlock::__construct()
  2. 8 src/Plugin/Block/ForwardLinkBlock.php \Drupal\forward\Plugin\Block\ForwardLinkBlock::__construct()

Constructs a new ForwardLinkBlock object.

Parameters

array $configuration: The plugin configuration.

string $plugin_id: The plugin Id.

mixed $plugin_definition: The plugin definition.

\Drupal\forward\ForwardAccessCheckerInterface $access_checker: The Forward access checker interface.

\Drupal\forward\ForwardLinkBuilderInterface $link_builder: The Forward link builder interface.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The core configuration factory.

\Drupal\Core\Routing\RouteMatchInterface $route_match: The core route matcher.

Overrides BlockPluginTrait::__construct

File

src/Plugin/Block/ForwardLinkBlock.php, line 81

Class

ForwardLinkBlock
Provides a block with a Forward link.

Namespace

Drupal\forward\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, ForwardAccessCheckerInterface $access_checker, ForwardLinkBuilderInterface $link_builder, ConfigFactoryInterface $config_factory, RouteMatchInterface $route_match) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->accessChecker = $access_checker;
  $this->linkBuilder = $link_builder;
  $this->routeMatch = $route_match;

  // Force standard render since inline render is part of the "Links" DS element.
  $settings = $config_factory
    ->get('forward.settings')
    ->get();
  $settings['forward_link_inline'] = FALSE;
  $this->settings = $settings;
}