You are here

public function ReferenceSettingsLinksForm::__construct in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Form/ReferenceSettingsLinksForm.php \Drupal\bibcite_entity\Form\ReferenceSettingsLinksForm::__construct()

Constructs a new ReferenceSettingsLinksForm object.

Parameters

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

\Drupal\Component\Plugin\PluginManagerInterface $bibcite_link_manager: Link plugin manager.

Overrides ConfigFormBase::__construct

File

modules/bibcite_entity/src/Form/ReferenceSettingsLinksForm.php, line 31

Class

ReferenceSettingsLinksForm
Common Reference settings.

Namespace

Drupal\bibcite_entity\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, PluginManagerInterface $bibcite_link_manager) {
  parent::__construct($config_factory);
  $this->bibciteLinkManager = $bibcite_link_manager;
}