source: sipes/modules_contrib/views/plugins/views_plugin_style_default.inc @ 65dadeb

stableversion-3.0
Last change on this file since 65dadeb was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100644
File size: 453 octetos
Línea 
1<?php
2/**
3 * @file
4 * Contains the default style plugin.
5 */
6
7/**
8 * Default style plugin to render rows one after another with no
9 * decorations.
10 *
11 * @ingroup views_style_plugins
12 */
13class views_plugin_style_default extends views_plugin_style {
14  /**
15   * Set default options
16   */
17  function options(&$options) {
18    parent::options($options);
19  }
20
21  function options_form(&$form, &$form_state) {
22    parent::options_form($form, $form_state);
23  }
24}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.