You are here

public function Feed::usesLinkDisplay in Views (for Drupal 7) 8.3

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 DisplayPluginBase::usesLinkDisplay

File

lib/Drupal/views/Plugin/views/display/Feed.php, line 256
Definition of Drupal\views\Plugin\views\display\Feed.

Class

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

Namespace

Drupal\views\Plugin\views\display

Code

public function usesLinkDisplay() {
  return TRUE;
}