You are here

ResponseDisplayPluginInterface.php in Drupal 8

File

core/modules/views/src/Plugin/views/display/ResponseDisplayPluginInterface.php
View source
<?php

namespace Drupal\views\Plugin\views\display;


/**
 * Defines a display which returns a Response object.
 *
 * This interface is meant to be used for display plugins, which do return some
 * other format requiring to return a response directly.
 */
interface ResponseDisplayPluginInterface extends DisplayPluginInterface {

  /**
   * Builds up a response with the rendered view as content.
   *
   * @param string $view_id
   *   The view ID.
   * @param string $display_id
   *   The display ID.
   * @param array $args
   *   (optional) The arguments of the view.
   *
   * @return \Symfony\Component\HttpFoundation\Response
   *   The built response.
   */
  public static function buildResponse($view_id, $display_id, array $args = []);

}

Interfaces

Namesort descending Description
ResponseDisplayPluginInterface Defines a display which returns a Response object.