You are here

public function ForwardLinkBlock::__construct in Forward 8.3

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

Constructs a new ForwardLinkBlock object.

Parameters

array $configuration:

string $plugin_id:

mixed $plugin_definition:

\Drupal\forward\ForwardAccessCheckerInterface $access_checker:

\Drupal\forward\ForwardLinkBuilderInterface $link_builder:

\Drupal\Core\Config\ConfigFactoryInterface $config_factory:

\Drupal\Core\Routing\RouteMatchInterface $route_match:

Overrides BlockPluginTrait::__construct

File

src/Plugin/Block/ForwardLinkBlock.php, line 79
Contains \Drupal\forward\Plugin\Block\ForwardLinkBlock.

Class

ForwardLinkBlock
Provides a block with a Forward link.

Namespace

Drupal\forward\Plugin\Block

Code

public function __construct($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;
}