public function FrontendEnvironmentInterface::getAdditionalDeployFormElements in Build Hooks 8.2
Same name and namespace in other branches
- 3.x src/Plugin/FrontendEnvironmentInterface.php \Drupal\build_hooks\Plugin\FrontendEnvironmentInterface::getAdditionalDeployFormElements()
Allows the plugin to add elements to the deployment form.
Parameters
\Drupal\Core\Form\FormStateInterface $form_state: The current form state.
Return value
array A form array to add to the deployment form.
6 methods override FrontendEnvironmentInterface::getAdditionalDeployFormElements()
- BitbucketFrontendEnvironment::getAdditionalDeployFormElements in modules/
build_hooks_bitbucket/ src/ Plugin/ FrontendEnvironment/ BitbucketFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
- CircleCiFrontendEnvironment::getAdditionalDeployFormElements in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleCiFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
- CircleV2::getAdditionalDeployFormElements in modules/
build_hooks_circleci/ src/ Plugin/ FrontendEnvironment/ CircleV2.php - Allows the plugin to add elements to the deployment form.
- GenericFrontendEnvironment::getAdditionalDeployFormElements in src/
Plugin/ FrontendEnvironment/ GenericFrontendEnvironment.php - Allows the plugin to add elements to the deployment form.
- 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/ FrontendEnvironmentInterface.php, line 35
Class
- FrontendEnvironmentInterface
- Defines an interface for Frontend environment plugins.
Namespace
Drupal\build_hooks\PluginCode
public function getAdditionalDeployFormElements(FormStateInterface $form_state);