You are here

function views_plugin_display_feed::get_style_type in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_display_feed.inc \views_plugin_display_feed::get_style_type()
  2. 7.3 plugins/views_plugin_display_feed.inc \views_plugin_display_feed::get_style_type()

Displays can require a certain type of style plugin. By default, they will be 'normal'.

Overrides views_plugin_display::get_style_type

File

plugins/views_plugin_display_feed.inc, line 16
Contains the feed display plugin.

Class

views_plugin_display_feed
The plugin that handles a feed, such as RSS or atom.

Code

function get_style_type() {
  return 'feed';
}