You are here

public function FrontendEnvironmentBase::getConfiguration in Build Hooks 3.x

Same name and namespace in other branches
  1. 8.2 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 50

Class

FrontendEnvironmentBase
Base class for Frontend environment plugins.

Namespace

Drupal\build_hooks\Plugin

Code

public function getConfiguration() {
  return $this->configuration;
}