You are here

public function Border::buildConfigurationForm in Bootstrap Styles 1.0.x

Same name in this branch
  1. 1.0.x src/Plugin/BootstrapStyles/Style/Border.php \Drupal\bootstrap_styles\Plugin\BootstrapStyles\Style\Border::buildConfigurationForm()
  2. 1.0.x src/Plugin/BootstrapStyles/StylesGroup/Border.php \Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup\Border::buildConfigurationForm()

Overrides StylesGroupPluginBase::buildConfigurationForm

File

src/Plugin/BootstrapStyles/StylesGroup/Border.php, line 25

Class

Border
Class Border.

Namespace

Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
  $form['border'] = [
    '#type' => 'details',
    '#title' => $this
      ->t('Border'),
    '#open' => FALSE,
  ];
  return $form;
}