LinkManagerInterface.php

Same filename in this branch
  1. 8.9.x core/modules/rest/src/LinkManager/LinkManagerInterface.php
Same filename in other branches
  1. 9 core/modules/hal/src/LinkManager/LinkManagerInterface.php

Namespace

Drupal\hal\LinkManager

File

core/modules/hal/src/LinkManager/LinkManagerInterface.php

View source
<?php

namespace Drupal\hal\LinkManager;


/**
 * Interface implemented by link managers.
 *
 * There are no explicit methods on the manager interface. Instead link managers
 * broker the interactions of the different components, and therefore must
 * implement each component interface, which is enforced by this interface
 * extending all of the component ones.
 *
 * While a link manager may directly implement these interface methods with
 * custom logic, it is expected to be more common for plugin managers to proxy
 * the method invocations to the respective components.
 */
interface LinkManagerInterface extends TypeLinkManagerInterface, RelationLinkManagerInterface {

}

Interfaces

Title Deprecated Summary
LinkManagerInterface Interface implemented by link managers.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.