You are here

views_bootstrap_thumbnail_plugin_style.inc in Views Bootstrap 7.2

Definition of views_bootstrap_plugin_style.

File

plugins/thumbnail/views_bootstrap_thumbnail_plugin_style.inc
View source
<?php

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

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

  /**
   * Definition.
   */
  public function option_definition() {
    $options = parent::option_definition();
    $options['alignment'] = array(
      'default' => 'horizontal',
    );
    $options['columns'] = array(
      'default' => 4,
    );
    return $options;
  }

  /**
   * Form.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['alignment'] = array(
      '#type' => 'radios',
      '#title' => t('Alignment'),
      '#options' => array(
        'horizontal' => t('Horizontal'),
        'vertical' => t('Vertical'),
      ),
      '#description' => 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'],
    );
    $options = array(
      1,
      2,
      3,
      4,
      6,
      12,
    );
    $form['columns'] = array(
      '#type' => 'select',
      '#title' => t('Number of columns'),
      '#options' => array_combine($options, $options),
      '#required' => TRUE,
      '#default_value' => $this->options['columns'],
    );
  }

}

Classes

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