6f0fccd2008774e8dd027e301916303000b67bbd
[yaffs-website] / web / modules / contrib / entity_browser / src / DisplayRouterInterface.php
1 <?php
2
3 namespace Drupal\entity_browser;
4
5 /**
6  * Defines an interface for displays that operate on routes.
7  *
8  * In addition to implementing the interface, specify 'uses_routes' in the
9  * plugin definition.
10  */
11 interface DisplayRouterInterface {
12
13   /**
14    * Gets page path.
15    *
16    * @return string
17    *   Path where display operates.
18    */
19   public function path();
20
21 }