function views_plugin_display_feed::uses_link_display in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 plugins/views_plugin_display_feed.inc \views_plugin_display_feed::uses_link_display()
- 7.3 plugins/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
- plugins/
views_plugin_display_feed.inc, line 202 - 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;
}