You are here

public function Recipe::render in Recipe 8.2

Renders this display.

Overrides DisplayPluginBase::render

File

src/Plugin/views/display/Recipe.php, line 149

Class

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

Namespace

Drupal\recipe\Plugin\views\display

Code

public function render() {
  $build = $this->view->style_plugin
    ->render($this->view->result);
  $this
    ->applyDisplayCacheabilityMetadata($build);
  return $build;
}