You are here

public function ViewsBootstrapGrid::buildOptionsForm in Views Bootstrap 8.3

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

Provide a form to edit options for this plugin.

Overrides StylePluginBase::buildOptionsForm

File

src/Plugin/views/style/ViewsBootstrapGrid.php, line 141

Class

ViewsBootstrapGrid
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 grid displays content in a responsive, mobile first fluid grid (<a href=":docs">see documentation</a>).', [
      ':docs' => 'https://www.drupal.org/docs/contributed-modules/views-bootstrap-for-bootstrap-3/grid',
    ]),
    '#weight' => -99,
  ];
  $form['alignment'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Alignment'),
    '#options' => [
      'horizontal' => $this
        ->t('Horizontal'),
      'vertical' => $this
        ->t('Vertical'),
    ],
    '#description' => $this
      ->t('Horizontal alignment will place items starting in the upper left and moving right.
      Vertical alignment will place items starting in the upper left and moving down.'),
    '#default_value' => $this->options['alignment'],
  ];
  $form['col_class_default'] = [
    '#title' => $this
      ->t('Default column classes'),
    '#description' => $this
      ->t('Add the default views column classes like views-col, col-1 and clearfix to the output. You can use this to quickly reduce the amount of markup the view provides by default, at the cost of making it more difficult to apply CSS.'),
    '#type' => 'checkbox',
    '#default_value' => $this->options['col_class_default'],
  ];
  $form['col_class_custom'] = [
    '#title' => $this
      ->t('Custom column class'),
    '#description' => $this
      ->t('Additional classes to provide on each column. Separated by a space.'),
    '#type' => 'textfield',
    '#default_value' => $this->options['col_class_custom'],
  ];
  if ($this
    ->usesFields()) {
    $form['col_class_custom']['#description'] .= ' ' . $this
      ->t('You may use field tokens from as per the "Replacement patterns" used in "Rewrite the output of this field" for all fields.');
  }
  $form['row_class_default'] = [
    '#title' => $this
      ->t('Default row classes'),
    '#description' => $this
      ->t('Adds the default views row classes like views-row, row-1 and clearfix to the output. You can use this to quickly reduce the amount of markup the view provides by default, at the cost of making it more difficult to apply CSS.'),
    '#type' => 'checkbox',
    '#default_value' => $this->options['row_class_default'],
  ];
  $form['row_class_custom'] = [
    '#title' => $this
      ->t('Custom row class'),
    '#description' => $this
      ->t('Additional classes to provide on each row. Separated by a space.'),
    '#type' => 'textfield',
    '#default_value' => $this->options['row_class_custom'],
  ];
  if ($this
    ->usesFields()) {
    $form['row_class_custom']['#description'] .= ' ' . $this
      ->t('You may use field tokens from as per the "Replacement patterns" used in "Rewrite the output of this field" for all fields.');
  }
  $form['columns'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Base number of columns'),
    '#default_value' => $this->options['columns'],
    '#required' => TRUE,
    '#options' => [
      1 => 1,
      2 => 2,
      3 => 3,
      4 => 4,
      6 => 6,
      12 => 12,
      999 => $this
        ->t('all'),
    ],
    '#description' => $this
      ->t('Choose the number of columns that views will wrap in a single row. This will be reflected in the HTML structure rendered regardless of the device size. If selecting "all" then use the alternative template.'),
  ];
  foreach ([
    'xs',
    'sm',
    'md',
    'lg',
  ] as $size) {
    $form["col_{$size}"] = [
      '#type' => 'select',
      '#title' => $this
        ->t("Number of columns (col-@size)", [
        '@size' => $size,
      ]),
      '#description' => $this
        ->t("This adds col-@size to the div.", [
        '@size' => $size,
      ]),
      '#required' => TRUE,
      '#default_value' => isset($this->options["col_{$size}"]) ? $this->options["col_{$size}"] : NULL,
      '#options' => [
        "col-{$size}-12" => 1,
        "col-{$size}-6" => 2,
        "col-{$size}-4" => 3,
        "col-{$size}-3" => 4,
        "col-{$size}-2" => 6,
        "col-{$size}-1" => 12,
      ],
    ];
  }
}