public function FrontendEnvironmentBase::getConfiguration in Build Hooks 8.2
Same name and namespace in other branches
- 3.x src/Plugin/FrontendEnvironmentBase.php \Drupal\build_hooks\Plugin\FrontendEnvironmentBase::getConfiguration()
Gets this plugin's configuration.
Return value
array An array of this plugin's configuration.
Overrides ConfigurableInterface::getConfiguration
5 calls to FrontendEnvironmentBase::getConfiguration()
- BitbucketFrontendEnvironment::getAdditionalDeployFormElements in modules/
build_hooks_bitbucket/ src/ Plugin/ FrontendEnvironment/ BitbucketFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
- BitbucketFrontendEnvironment::getBuildHookDetails in modules/
build_hooks_bitbucket/ src/ Plugin/ FrontendEnvironment/ BitbucketFrontendEnvironment.php - Get the info to trigger the hook based on the configuration of the plugin.
- CircleCiFrontendEnvironment::getAdditionalDeployFormElements in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleCiFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
- CircleCiFrontendEnvironment::getBuildHookDetails in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleCiFrontendEnvironment.php - Get the info to trigger the hook based on the configuration of the plugin.
- NetlifyFrontendEnvironment::getAdditionalDeployFormElements in modules/
build_hooks_netlify/ src/ Plugin/ FrontendEnvironment/ NetlifyFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
File
- src/
Plugin/ FrontendEnvironmentBase.php, line 49
Class
- FrontendEnvironmentBase
- Base class for Frontend environment plugins.
Namespace
Drupal\build_hooks\PluginCode
public function getConfiguration() {
return $this->configuration;
}