entity_browser-8.x-2.x-dev/src/DisplayRouterInterface.php
src/DisplayRouterInterface.php
<?php
namespace Drupal\entity_browser;
/**
* Defines an interface for displays that operate on routes.
*
* In addition to implementing the interface, specify 'uses_routes' in the
* plugin definition.
*/
interface DisplayRouterInterface {
/**
* Gets page path.
*
* @return string
* Path where display operates.
*/
public function path();
}
