You are here

public function FreelinkingPrepopulate::getConfiguration in Freelinking 8.3

Same name and namespace in other branches
  1. 4.0.x modules/freelinking_prepopulate/src/Plugin/freelinking/FreelinkingPrepopulate.php \Drupal\freelinking_prepopulate\Plugin\freelinking\FreelinkingPrepopulate::getConfiguration()

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides FreelinkingPluginBase::getConfiguration

2 calls to FreelinkingPrepopulate::getConfiguration()
FreelinkingPrepopulate::buildLink in modules/freelinking_prepopulate/src/Plugin/freelinking/FreelinkingPrepopulate.php
Build a link with the plugin.
FreelinkingPrepopulate::settingsForm in modules/freelinking_prepopulate/src/Plugin/freelinking/FreelinkingPrepopulate.php
Plugin configuration form.

File

modules/freelinking_prepopulate/src/Plugin/freelinking/FreelinkingPrepopulate.php, line 89

Class

FreelinkingPrepopulate
Freelinking prepopulate plugin.

Namespace

Drupal\freelinking_prepopulate\Plugin\freelinking

Code

public function getConfiguration() {
  $configuration = parent::getConfiguration();
  return NestedArray::mergeDeep($this
    ->defaultConfiguration(), $configuration);
}