Views style plugins in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 plugins/views_plugin_style.inc \views_style_plugins
- 6.2 plugins/views_plugin_style.inc \views_style_plugins
Style plugins control how a view is rendered. For example, they can choose to display a collection of fields, node_view() output, table output, or any kind of crazy output they want.
Many style plugins can have an optional 'row' plugin, that displays a single record. Not all style plugins can utilize this, so it is up to the plugin to set this up and call through to the row plugin.
See also
File
- plugins/
views_plugin_style.inc, line 8 - Definition of views_plugin_style.
Classes
Name | Location | Description |
---|---|---|
views_plugin_style |
plugins/ |
Base class to define a style plugin handler. |
views_plugin_style_default |
plugins/ |
Default style plugin to render rows one after another with no decorations. |
views_plugin_style_grid |
plugins/ |
Style plugin to render each item in a grid cell. |
views_plugin_style_jump_menu |
plugins/ |
Style plugin to render each item as a row in a table. |
views_plugin_style_list |
plugins/ |
Style plugin to render each item in an ordered or unordered list. |
views_plugin_style_rss |
plugins/ |
Default style plugin to render an RSS feed. |
views_plugin_style_summary |
plugins/ |
The default style plugin for summaries. |
views_plugin_style_summary_jump_menu |
plugins/ |
The default style plugin for summaries. |
views_plugin_style_summary_unformatted |
plugins/ |
The default style plugin for summaries. |
views_plugin_style_table |
plugins/ |
Style plugin to render each item as a row in a table. |