You are here

class views_plugin_style_salvattore in Salvattore (CSS driven Masonry) 8

Same name and namespace in other branches
  1. 7.2 views_plugin_style_salvattore.inc \views_plugin_style_salvattore
  2. 7 views_plugin_style_salvattore.inc \views_plugin_style_salvattore

@file Contains the Salvattore style plugin.

Hierarchy

Expanded class hierarchy of views_plugin_style_salvattore

1 string reference to 'views_plugin_style_salvattore'
salvattore_views_plugins in ./salvattore.views.inc
Implements hook_views_plugins().

File

./views_plugin_style_salvattore.inc, line 8
Contains the Salvattore style plugin.

View source
class views_plugin_style_salvattore extends views_plugin_style {

  /**
   * Set default options
   */
  function option_definition() {
    $options = parent::option_definition();
    $options['class'] = array(
      'default' => '',
    );
    return $options;
  }

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

}

Members