You are here

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

Overrides StylesGroupPluginBase::buildConfigurationForm

File

src/Plugin/BootstrapStyles/StylesGroup/Background.php, line 27

Class

Background
Class Background.

Namespace

Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup

Code

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