public function FreelinkingPrepopulate::getConfiguration in Freelinking 4.0.x
Same name and namespace in other branches
- 8.3 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 90
Class
- FreelinkingPrepopulate
- Freelinking prepopulate plugin.
Namespace
Drupal\freelinking_prepopulate\Plugin\freelinkingCode
public function getConfiguration() {
$configuration = parent::getConfiguration();
return NestedArray::mergeDeep($this
->defaultConfiguration(), $configuration);
}