Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/hal/src/LinkManager/ConfigurableLinkManagerInterface.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 * 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 } |