You are here

views_bootstrap_tab_plugin_style.inc in Views Bootstrap 7.3

Same filename and directory in other branches
  1. 7.2 plugins/tab/views_bootstrap_tab_plugin_style.inc

Definition of views_bootstrap_plugin_style.

File

plugins/tab/views_bootstrap_tab_plugin_style.inc
View source
<?php

/**
 * @file
 * Definition of views_bootstrap_plugin_style.
 */

/**
 * Class to define a style plugin handler.
 */
class ViewsBootstrapTabPluginStyle extends views_plugin_style {

  /**
   * Definition.
   */
  public function option_definition() {
    $options = parent::option_definition();
    $options['tab_field'] = array(
      'default' => NULL,
    );
    $options['tab_type'] = array(
      'default' => 'tabs',
    );
    $options['tab_position'] = array(
      'default' => 'basic',
    );
    $options['tab_fade'] = array(
      'default' => FALSE,
    );
    return $options;
  }

  /**
   * Options form.
   */
  public function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    if (isset($form['grouping'])) {
      $options = array();
      foreach (element_children($form['grouping']) as $key => $value) {
        if (!empty($form['grouping'][$key]['field']['#options']) && is_array($form['grouping'][$key]['field']['#options'])) {
          $options = array_merge($options, $form['grouping'][$key]['field']['#options']);
        }
      }
      $form['help'] = array(
        '#markup' => t('The Bootstrap tabs displays content with tab titles linked to dynamically displayed content (<a href="!docs">see documentation</a>).', [
          '!docs' => 'https://www.drupal.org/docs/7/modules/views-bootstrap/tabs',
        ]),
        '#weight' => -99,
      );
      $form['tab_field'] = array(
        '#type' => 'select',
        '#title' => t('Tab field'),
        '#options' => $options,
        '#required' => TRUE,
        '#default_value' => $this->options['tab_field'],
        '#description' => t('Select the field that will be used as the tab.'),
      );
      $form['tab_type'] = array(
        '#type' => 'select',
        '#title' => t('Tab Type'),
        '#options' => array(
          'tabs' => t('Tabs'),
          'pills' => t('Pills'),
          'list' => t('List'),
        ),
        '#required' => TRUE,
        '#default_value' => $this->options['tab_type'],
      );
      $form['tab_position'] = array(
        '#type' => 'radios',
        '#title' => t('Position of tabs'),
        '#options' => array(
          'basic' => t('Tabs/pills on the top'),
          'left' => t('Tabs/pills on the left'),
          'right' => t('Tabs/pills on the right'),
          'below' => t('Tabs/pills on the bottom'),
          'justified' => t('Tabs/pills justified on the top'),
          'stacked' => t('Tabs/pills stacked'),
        ),
        '#required' => TRUE,
        '#default_value' => $this->options['tab_position'] ? $this->options['tab_position'] : 'basic',
      );
      $form['tab_fade'] = array(
        '#type' => 'checkbox',
        '#title' => t('Fade Effect'),
        '#default_value' => $this->options['tab_fade'],
        '#description' => t('Add a fade in effect when tabs clicked'),
      );
    }
  }

}

Classes

Namesort descending Description
ViewsBootstrapTabPluginStyle Class to define a style plugin handler.