views_plugin_style_default.inc 509 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * Definition of views_plugin_style_default.
  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. public function options(&$options) {
  17. parent::options($options);
  18. }
  19. /**
  20. * {@inheritdoc}
  21. */
  22. public function options_form(&$form, &$form_state) {
  23. parent::options_form($form, $form_state);
  24. }
  25. }