You are here

protected function WebformElement::buildConfigurationFormTabs in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/WebformElement.php \Drupal\webform\Plugin\WebformElement\WebformElement::buildConfigurationFormTabs()

Build configuration form tabs.

Parameters

array $form: An associative array containing the initial structure of the plugin form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The plugin form with tabs.

Overrides WebformElementBase::buildConfigurationFormTabs

File

src/Plugin/WebformElement/WebformElement.php, line 70

Class

WebformElement
Provides a 'generic' element. Used as a fallback.

Namespace

Drupal\webform\Plugin\WebformElement

Code

protected function buildConfigurationFormTabs(array $form, FormStateInterface $form_state) {

  // Generic elements do not need use tabs.
  return $form;
}