You are here

public function ViewsBootstrapListGroup::buildOptionsForm in Views Bootstrap 8.3

Same name and namespace in other branches
  1. 8.4 src/Plugin/views/style/ViewsBootstrapListGroup.php \Drupal\views_bootstrap\Plugin\views\style\ViewsBootstrapListGroup::buildOptionsForm()

Provide a form to edit options for this plugin.

Overrides StylePluginBase::buildOptionsForm

File

src/Plugin/views/style/ViewsBootstrapListGroup.php, line 51

Class

ViewsBootstrapListGroup
Style plugin to render each item in an ordered or unordered list.

Namespace

Drupal\views_bootstrap\Plugin\views\style

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);
  $form['help'] = [
    '#markup' => $this
      ->t('The Bootstrap list group displays content in an unordered list with list group classes (<a href=":docs">see documentation</a>).', [
      ':docs' => 'https://www.drupal.org/docs/contributed-modules/views-bootstrap-for-bootstrap-3/list-group',
    ]),
    '#weight' => -99,
  ];
  $fields = [
    '' => $this
      ->t('<None>'),
  ];
  $fields += $this->displayHandler
    ->getFieldLabels(TRUE);
  $form['panels'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Set group field in panel heading'),
    '#default_value' => $this->options['panels'],
    '#states' => [
      'invisible' => [
        ':input[name="style_options[grouping][0][field]"]' => [
          'value' => '',
        ],
      ],
    ],
    '#weight' => 0,
  ];
  $form['title_field'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Title field'),
    '#options' => $fields,
    '#required' => FALSE,
    '#default_value' => $this->options['title_field'],
    '#description' => $this
      ->t('Select the field that will be used as the title.'),
  ];
}