Mercurial > hg > isophonics-drupal-site
comparison core/modules/hal/src/LinkManager/LinkManagerInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\hal\LinkManager; | |
4 | |
5 /** | |
6 * Interface implemented by link managers. | |
7 * | |
8 * There are no explicit methods on the manager interface. Instead link managers | |
9 * broker the interactions of the different components, and therefore must | |
10 * implement each component interface, which is enforced by this interface | |
11 * extending all of the component ones. | |
12 * | |
13 * While a link manager may directly implement these interface methods with | |
14 * custom logic, it is expected to be more common for plugin managers to proxy | |
15 * the method invocations to the respective components. | |
16 */ | |
17 interface LinkManagerInterface extends TypeLinkManagerInterface, RelationLinkManagerInterface { | |
18 } |