1 views_plugin_display_feed.inc views_plugin_display_feed::uses_link_display()

Check to see if the display has some need to link to another display.

For the most part, displays without a path will use a link display. However, sometimes displays that have a path might also need to link to another display. This is true for feeds.

Overrides views_plugin_display::uses_link_display

File

core/modules/views/plugins/views_plugin_display_feed.inc, line 226
Contains the feed display plugin.

Class

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

Code

function uses_link_display() {
  return TRUE;
}