You are here

public function Links::__construct in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Plugin/views/field/Links.php \Drupal\bibcite_entity\Plugin\views\field\Links::__construct()

Constructs a Handler object.

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.

Overrides HandlerBase::__construct

File

modules/bibcite_entity/src/Plugin/views/field/Links.php, line 38

Class

Links
Field handler to render links for bibcite entity.

Namespace

Drupal\bibcite_entity\Plugin\views\field

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, PluginManagerInterface $link_plugin_manager, ConfigFactory $config_factory) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->linkPluginManager = $link_plugin_manager;
  $this->configFactory = $config_factory;
}