abstract class FrontendEnvironmentBase in Build Hooks 8.2
Same name and namespace in other branches
- 3.x src/Plugin/FrontendEnvironmentBase.php \Drupal\build_hooks\Plugin\FrontendEnvironmentBase
Base class for Frontend environment plugins.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\build_hooks\Plugin\FrontendEnvironmentBase implements FrontendEnvironmentInterface, PluginWithFormsInterface uses PluginWithFormsTrait, StringTranslationTrait
Expanded class hierarchy of FrontendEnvironmentBase
6 files declare their use of FrontendEnvironmentBase
- BitbucketFrontendEnvironment.php in modules/
build_hooks_bitbucket/ src/ Plugin/ FrontendEnvironment/ BitbucketFrontendEnvironment.php - CircleCiFrontendEnvironment.php in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleCiFrontendEnvironment.php - CircleV2.php in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleV2.php - GenericFrontendEnvironment.php in src/
Plugin/ FrontendEnvironment/ GenericFrontendEnvironment.php - NetlifyFrontendEnvironment.php in modules/
build_hooks_netlify/ src/ Plugin/ FrontendEnvironment/ NetlifyFrontendEnvironment.php
File
- src/
Plugin/ FrontendEnvironmentBase.php, line 17
Namespace
Drupal\build_hooks\PluginView source
abstract class FrontendEnvironmentBase extends PluginBase implements FrontendEnvironmentInterface, PluginWithFormsInterface {
use PluginWithFormsTrait;
use StringTranslationTrait;
/**
* The transliteration service.
*
* @var \Drupal\Component\Transliteration\TransliterationInterface
*/
protected $transliteration;
/**
* {@inheritdoc}
*/
public function label() {
if (!empty($this->configuration['label'])) {
return $this->configuration['label'];
}
}
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = NestedArray::mergeDeep($this
->baseConfigurationDefaults(), $this
->defaultConfiguration(), $configuration);
}
/**
* Returns generic default configuration for frontend environment plugins.
*
* @return array
* An associative array with the default configuration.
*/
protected function baseConfigurationDefaults() {
return [
'id' => $this
->getPluginId(),
'label' => '',
'provider' => $this->pluginDefinition['provider'],
];
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function setConfigurationValue($key, $value) {
$this->configuration[$key] = $value;
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
$dependencies = [];
$definition = $this
->getPluginDefinition();
$dependencies['module'][] = $definition['provider'];
return $dependencies;
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$definition = $this
->getPluginDefinition();
$form['provider'] = [
'#type' => 'value',
'#value' => $definition['provider'],
];
// Add plugin-specific settings for this frontend environment type.
$form += $this
->frontEndEnvironmentForm($form, $form_state);
return $form;
}
/**
* {@inheritdoc}
*/
public function frontEndEnvironmentForm($form, FormStateInterface $form_state) {
return [];
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
$this
->frontEndEnvironmentFormValidate($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function frontEndEnvironmentFormValidate($form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
if (!$form_state
->getErrors()) {
$this->configuration['label'] = $form_state
->getValue('label');
$this->configuration['provider'] = $form_state
->getValue('provider');
$this
->frontEndEnvironmentSubmit($form, $form_state);
}
}
/**
* {@inheritdoc}
*/
public function frontEndEnvironmentSubmit($form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function getMachineNameSuggestion() {
$definition = $this
->getPluginDefinition();
$admin_label = $definition['admin_label'];
$transliterated = $this
->transliteration()
->transliterate($admin_label, LanguageInterface::LANGCODE_DEFAULT, '_');
$transliterated = mb_strtolower($transliterated);
$transliterated = preg_replace('@[^a-z0-9_.]+@', '', $transliterated);
return $transliterated;
}
/**
* Wraps the transliteration service.
*
* @return \Drupal\Component\Transliteration\TransliterationInterface
* The transliteration service.
*/
protected function transliteration() {
if (!$this->transliteration) {
$this->transliteration = \Drupal::transliteration();
}
return $this->transliteration;
}
/**
* Sets the transliteration service.
*
* @param \Drupal\Component\Transliteration\TransliterationInterface $transliteration
* The transliteration service.
*/
public function setTransliteration(TransliterationInterface $transliteration) {
$this->transliteration = $transliteration;
}
/**
* {@inheritdoc}
*/
public function deploymentWasTriggered(ResponseInterface $response) : bool {
return $response
->getStatusCode() === 200;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FrontendEnvironmentBase:: |
protected | property | The transliteration service. | |
FrontendEnvironmentBase:: |
protected | function | Returns generic default configuration for frontend environment plugins. | |
FrontendEnvironmentBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
|
FrontendEnvironmentBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
FrontendEnvironmentBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableInterface:: |
3 |
FrontendEnvironmentBase:: |
public | function |
Determine if the deployment was triggered successfully. Overrides FrontendEnvironmentInterface:: |
1 |
FrontendEnvironmentBase:: |
public | function | 6 | |
FrontendEnvironmentBase:: |
public | function | 1 | |
FrontendEnvironmentBase:: |
public | function | 6 | |
FrontendEnvironmentBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
FrontendEnvironmentBase:: |
public | function | ||
FrontendEnvironmentBase:: |
public | function | ||
FrontendEnvironmentBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
FrontendEnvironmentBase:: |
public | function | ||
FrontendEnvironmentBase:: |
public | function | Sets the transliteration service. | |
FrontendEnvironmentBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
|
FrontendEnvironmentBase:: |
protected | function | Wraps the transliteration service. | |
FrontendEnvironmentBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
|
FrontendEnvironmentBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
4 |
FrontendEnvironmentInterface:: |
public | function | Allows the plugin to add elements to the deployment form. | 6 |
FrontendEnvironmentInterface:: |
public | function | Get the info to trigger the hook based on the configuration of the plugin. | 6 |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginWithFormsTrait:: |
public | function | ||
PluginWithFormsTrait:: |
public | function | ||
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |