Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / plugins / views_plugin_style_default.inc @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
5
 * Definition of views_plugin_style_default.
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
  /**
17
   * Set default options.
18
   */
19
  public function options(&$options) {
20
    parent::options($options);
21
  }
22

    
23
  /**
24
   * {@inheritdoc}
25
   */
26
  public function options_form(&$form, &$form_state) {
27
    parent::options_form($form, $form_state);
28
  }
29

    
30
}