You are here

public function ViewsBootstrapTablePluginStyle::options_form in Views Bootstrap 7.3

Same name and namespace in other branches
  1. 7.2 plugins/table/views_bootstrap_table_plugin_style.inc \ViewsBootstrapTablePluginStyle::options_form()

Form.

Overrides views_plugin_style_table::options_form

File

plugins/table/views_bootstrap_table_plugin_style.inc, line 27
Definition of views_bootstrap_plugin_style.

Class

ViewsBootstrapTablePluginStyle
Class to define a style plugin handler.

Code

public function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['help'] = array(
    '#markup' => t('The Bootstrap table style adds default Bootstrap table classes and optional classes (<a href="!docs">see documentation</a>).', [
      '!docs' => 'https://www.drupal.org/docs/7/modules/views-bootstrap/table',
    ]),
    '#weight' => -99,
  );
  $form['responsive'] = array(
    '#type' => 'checkbox',
    '#title' => t('Responsive'),
    '#default_value' => $this->options['responsive'],
    '#description' => t('To make a table scroll horizontally on small devices.'),
  );
  $form['bootstrap_styles'] = array(
    '#title' => t('Bootstrap styles'),
    '#type' => 'checkboxes',
    '#default_value' => $this->options['bootstrap_styles'],
    '#options' => array(
      'striped' => t('Striped'),
      'bordered' => t('Bordered'),
      'hover' => t('Hover'),
      'condensed' => t('Condensed'),
    ),
  );
}