You are here

interface DisplayRouterInterface in Entity Browser 8.2

Same name and namespace in other branches
  1. 8 src/DisplayRouterInterface.php \Drupal\entity_browser\DisplayRouterInterface

Defines an interface for displays that operate on routes.

In addition to implementing the interface, specify 'uses_routes' in the plugin definition.

Hierarchy

Expanded class hierarchy of DisplayRouterInterface

All classes that implement DisplayRouterInterface

3 files declare their use of DisplayRouterInterface
EntityBrowser.php in src/Entity/EntityBrowser.php
IFrame.php in src/Plugin/EntityBrowser/Display/IFrame.php
Standalone.php in src/Plugin/EntityBrowser/Display/Standalone.php

File

src/DisplayRouterInterface.php, line 11

Namespace

Drupal\entity_browser
View source
interface DisplayRouterInterface {

  /**
   * Gets page path.
   *
   * @return string
   *   Path where display operates.
   */
  public function path();

}

Members