public function Pdf::usesLinkDisplay in PDF Generator 8
Same name and namespace in other branches
- 2.0.x src/Plugin/views/display/Pdf.php \Drupal\pdf_generator\Plugin\views\display\Pdf::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
- src/
Plugin/ views/ display/ Pdf.php, line 442
Class
- The plugin that handles a feed, such as RSS or atom.
Namespace
Drupal\pdf_generator\Plugin\views\displayCode
public function usesLinkDisplay() {
return TRUE;
}