You are here

public function GenericFrontendEnvironment::defaultConfiguration in Build Hooks 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/FrontendEnvironment/GenericFrontendEnvironment.php \Drupal\build_hooks\Plugin\FrontendEnvironment\GenericFrontendEnvironment::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides FrontendEnvironmentBase::defaultConfiguration

File

src/Plugin/FrontendEnvironment/GenericFrontendEnvironment.php, line 23

Class

GenericFrontendEnvironment
Provides a 'Generic' frontend environment type.

Namespace

Drupal\build_hooks\Plugin\FrontendEnvironment

Code

public function defaultConfiguration() {
  return [
    'build_hook_url' => '',
  ] + parent::defaultConfiguration();
}