views_plugin_style_default.inc

  1. 3.x plugins/views_plugin_style_default.inc
  2. 2.x plugins/views_plugin_style_default.inc

Contains the default style plugin.

File

plugins/views_plugin_style_default.inc
View source
  1. <?php
  2. /**
  3. * @file
  4. * Contains the default style plugin.
  5. */
  6. /**
  7. * Default style plugin to render rows one after another with no
  8. * decorations.
  9. *
  10. * @ingroup views_style_plugins
  11. */
  12. class views_plugin_style_default extends views_plugin_style {
  13. /**
  14. * Set default options
  15. */
  16. function options(&$options) {
  17. parent::options($options);
  18. }
  19. function options_form(&$form, &$form_state) {
  20. parent::options_form($form, $form_state);
  21. }
  22. }