Views' style plugins
Same name in other branches
- 7.x-3.x 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
hook_views_plugins
File
-
plugins/
views_plugin_style.inc, line 3
Classes
Title Sort descending | File name | Summary |
---|---|---|
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. |