Mercurial > hg > isophonics-drupal-site
comparison core/modules/hal/src/LinkManager/ConfigurableLinkManagerInterface.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 * Defines an interface for a link manager with a configurable domain. | |
7 */ | |
8 interface ConfigurableLinkManagerInterface { | |
9 | |
10 /** | |
11 * Sets the link domain used in constructing link URIs. | |
12 * | |
13 * @param string $domain | |
14 * The link domain to use for constructing link URIs. | |
15 * | |
16 * @return $this | |
17 */ | |
18 public function setLinkDomain($domain); | |
19 | |
20 } |