You are here

public function LeafletAttachment::usesLinkDisplay in Leaflet 8

Same name and namespace in other branches
  1. 2.1.x modules/leaflet_views/src/Plugin/views/display/LeafletAttachment.php \Drupal\leaflet_views\Plugin\views\display\LeafletAttachment::usesLinkDisplay()
  2. 2.0.x modules/leaflet_views/src/Plugin/views/display/LeafletAttachment.php \Drupal\leaflet_views\Plugin\views\display\LeafletAttachment::usesLinkDisplay()

Checks 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

modules/leaflet_views/src/Plugin/views/display/LeafletAttachment.php, line 49

Class

LeafletAttachment
Plugin attachment of additional leaflet features to leaflet map views.

Namespace

Drupal\leaflet_views\Plugin\views\display

Code

public function usesLinkDisplay() {
  return FALSE;
}