Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/hal/src/LinkManager/LinkManagerInterface.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
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 } |