You are here

views_isotope_plugin_style_isotope.inc in Views Isotope (Deprecated) 7

File

views_isotope_plugin_style_isotope.inc
View source
<?php

/**
 * @file
 */

/**
 * Style plugin.
 */
class views_isotope_plugin_style_isotope extends views_plugin_style_list {

  /**
   * Set default options.
   */
  function option_definition() {
    $options = parent::option_definition();
    return $options;
  }

  /**
   * Render the given style.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
  }

}

Classes

Namesort descending Description
views_isotope_plugin_style_isotope Style plugin.