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
- modules/
views/ plugins/ views_plugin_style.inc, line 7 - Definition of views_plugin_style.
Classes
Name | Location | Description |
---|---|---|
views_plugin_style |
modules/ |
Base class to define a style plugin handler. |
views_plugin_style_default |
modules/ |
Default style plugin to render rows one after another with no decorations. |
views_plugin_style_grid |
modules/ |
Style plugin to render each item in a grid cell. |
views_plugin_style_jump_menu |
modules/ |
Style plugin to render each item as a row in a table. |
views_plugin_style_list |
modules/ |
Style plugin to render each item in an ordered or unordered list. |
views_plugin_style_rss |
modules/ |
Default style plugin to render an RSS feed. |
views_plugin_style_summary |
modules/ |
The default style plugin for summaries. |
views_plugin_style_summary_jump_menu |
modules/ |
The default style plugin for summaries. |
views_plugin_style_summary_unformatted |
modules/ |
The default style plugin for summaries. |
views_plugin_style_table |
modules/ |
Style plugin to render each item as a row in a table. |