Projet

Général

Profil

Paste
Télécharger (454 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / plugins / views_plugin_style_default.inc @ 7547bb19

1
<?php
2

    
3
/**
4
 * @file
5
 * Contains the default style plugin.
6
 */
7

    
8
/**
9
 * Default style plugin to render rows one after another with no
10
 * decorations.
11
 *
12
 * @ingroup views_style_plugins
13
 */
14
class views_plugin_style_default extends views_plugin_style {
15
  /**
16
   * Set default options
17
   */
18
  function options(&$options) {
19
    parent::options($options);
20
  }
21

    
22
  function options_form(&$form, &$form_state) {
23
    parent::options_form($form, $form_state);
24
  }
25
}