1.20.x views_plugin_display.inc views_plugin_display::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.

File

modules/views/plugins/views_plugin_display.inc, line 732
Contains the base display plugin.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

function uses_link_display() {
  return !$this->has_path();
}