/[drupal]/contributions/modules/views/plugins/views_plugin_style_default.inc
ViewVC logotype

Contents of /contributions/modules/views/plugins/views_plugin_style_default.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Tue Sep 30 19:47:11 2008 UTC (13 months, 3 weeks ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-6--2-7, DRUPAL-6--2-6, DRUPAL-6--2-5, DRUPAL-6--2-4, DRUPAL-6--2-3, DRUPAL-6--2-2, DRUPAL-6--2-1, DRUPAL-6--2-0, DRUPAL-6--3-0-ALPHA1, DRUPAL-6--2-0-RC5, DRUPAL-6--2-0-RC4, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-6--3, DRUPAL-7--3
Changes since 1.1: +1 -2 lines
File MIME type: text/x-php
#281555: Add row classes (first, last, even, odd, row number) to the unformatted and list styles.
1 <?php
2 // $Id: views_plugin_style_default.inc,v 1.1 2008/09/03 19:21:30 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 */
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 }

  ViewVC Help
Powered by ViewVC 1.1.2