You are here

views_bootstrap_thumbnail_plugin_rows.inc in Views Bootstrap 7.3

Same filename and directory in other branches
  1. 7.2 plugins/thumbnail/views_bootstrap_thumbnail_plugin_rows.inc

Definition of views_bootstrap_plugin_rows.

File

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

/**
 * @file
 * Definition of views_bootstrap_plugin_rows.
 */

/**
 * Class to define a row plugin handler.
 */
class ViewsBootstrapThumbnailPluginRows extends views_plugin_row {

  /**
   * Definition.
   */
  public function option_definition() {
    $options = parent::option_definition();
    $options['image'] = array(
      'default' => '',
    );
    $options['title'] = array(
      'default' => '',
    );
    $options['content'] = array(
      'default' => array(),
    );
    return $options;
  }

  /**
   * Form.
   */
  public function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);

    // Pre-build all of our option lists for the dials and switches that follow.
    $fields = array();
    foreach ($this->display->handler
      ->get_handlers('field') as $field => $handler) {
      if ($label = $handler
        ->label()) {
        $fields[$field] = $label;
      }
      else {
        $fields[$field] = $handler
          ->ui_name();
      }
    }
    $form['image'] = array(
      '#type' => 'select',
      '#required' => TRUE,
      '#title' => t('Image'),
      '#options' => array(
        '' => t('<None>'),
      ) + $fields,
      '#default_value' => $this->options['image'],
    );
    $form['title'] = array(
      '#type' => 'select',
      '#title' => t('Title'),
      '#options' => array(
        '' => t('<None>'),
      ) + $fields,
      '#default_value' => $this->options['title'],
    );
    $form['content'] = array(
      '#type' => 'checkboxes',
      '#title' => t('Content'),
      '#options' => $fields,
      '#default_value' => $this->options['content'],
    );
  }

}

Classes

Namesort descending Description
ViewsBootstrapThumbnailPluginRows Class to define a row plugin handler.