You are here

public function Recipe::usesLinkDisplay in Recipe 8.2

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/Recipe.php, line 280

Class

Recipe
The plugin that handles a recipe format, such as RecipeML.

Namespace

Drupal\recipe\Plugin\views\display

Code

public function usesLinkDisplay() {
  return FALSE;
}