You are here

public function ViewsBootstrapMediaObject::buildOptionsForm in Views Bootstrap 8.3

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

Render the given style.

Overrides StylePluginBase::buildOptionsForm

File

src/Plugin/views/style/ViewsBootstrapMediaObject.php, line 52

Class

ViewsBootstrapMediaObject
Style plugin to render each item as a row in a Bootstrap Media Object.

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 media object displays content with an image item lead with heading and text (<a href=":docs">see documentation</a>).', [
      ':docs' => 'https://www.drupal.org/docs/contributed-modules/views-bootstrap-for-bootstrap-3/media-object',
    ]),
    '#weight' => -99,
  ];
  $fields = $this->displayHandler
    ->getFieldLabels(TRUE);
  $optionalFields = [
    '' => $this
      ->t('<None>'),
  ];
  $optionalFields += $this->displayHandler
    ->getFieldLabels(TRUE);
  $form['heading_field'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Heading field'),
    '#options' => $fields,
    '#required' => TRUE,
    '#default_value' => $this->options['heading_field'],
    '#description' => $this
      ->t('Select the field that will be used as the media object heading. Exclude this field from display to prevent duplication.'),
  ];
  $form['image_field'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Image field'),
    '#options' => $this->displayHandler
      ->getFieldLabels(TRUE),
    '#required' => TRUE,
    '#default_value' => $this->options['image_field'],
    '#description' => $this
      ->t('Select the field that will be used as the media object image. Exclude this field from display to prevent duplication.'),
  ];
  $form['body_field'] = [
    '#title' => $this
      ->t('Body field'),
    '#markup' => $this
      ->t('All fields that are not excluded from display will be shown as the body.'),
  ];
  $form['image_class'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Image Alignment'),
    '#options' => [
      'media-left' => $this
        ->t('Left'),
      'media-right' => $this
        ->t('Right'),
      'media-middle' => $this
        ->t('Middle'),
    ],
    '#default_value' => $this->options['image_class'],
    '#description' => $this
      ->t('Align the media object image left or right.'),
  ];
}