interface ConfigurableLinkManagerInterface in Drupal 8
Same name in this branch
- 8 core/modules/hal/src/LinkManager/ConfigurableLinkManagerInterface.php \Drupal\hal\LinkManager\ConfigurableLinkManagerInterface
- 8 core/modules/rest/src/LinkManager/ConfigurableLinkManagerInterface.php \Drupal\rest\LinkManager\ConfigurableLinkManagerInterface
Same name and namespace in other branches
- 9 core/modules/hal/src/LinkManager/ConfigurableLinkManagerInterface.php \Drupal\hal\LinkManager\ConfigurableLinkManagerInterface
Defines an interface for a link manager with a configurable domain.
Hierarchy
- interface \Drupal\hal\LinkManager\ConfigurableLinkManagerInterface
Expanded class hierarchy of ConfigurableLinkManagerInterface
All classes that implement ConfigurableLinkManagerInterface
1 file declares its use of ConfigurableLinkManagerInterface
- ConfigurableLinkManagerInterface.php in core/
modules/ rest/ src/ LinkManager/ ConfigurableLinkManagerInterface.php
File
- core/
modules/ hal/ src/ LinkManager/ ConfigurableLinkManagerInterface.php, line 8
Namespace
Drupal\hal\LinkManagerView source
interface ConfigurableLinkManagerInterface {
/**
* Sets the link domain used in constructing link URIs.
*
* @param string $domain
* The link domain to use for constructing link URIs.
*
* @return $this
*/
public function setLinkDomain($domain);
}