source: sipei/modules/views/plugins/views_plugin_style_default.inc

drupal-6.x
Last change on this file was ffa4103, checked in by Luis Peña <lpena@…>, 12 años ago

Cambiando el nombre de modulos a modules

  • Propiedad mode establecida a 100755
File size: 538 octetos
Línea 
1<?php
2// $Id: views_plugin_style_default.inc,v 1.2 2008/09/30 19:47:11 merlinofchaos Exp $
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 */
14class 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}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.