interface RelationLinkManagerInterface

Hierarchy

Expanded class hierarchy of RelationLinkManagerInterface

All classes that implement RelationLinkManagerInterface

File

drupal/core/modules/rest/lib/Drupal/rest/LinkManager/RelationLinkManagerInterface.php, line 10
Contains \Drupal\rest\LinkManager\RelationLinkManagerInterface.

Namespace

Drupal\rest\LinkManager
View source
interface RelationLinkManagerInterface {

  /**
   * Gets the URI that corresponds to a field.
   *
   * @param string $entity_type
   *   The bundle's entity type.
   * @param string $bundle
   *   The bundle name.
   * @param string $field_name
   *   The field name.
   *
   * @return string
   *   The corresponding URI for the field.
   */
  public function getRelationUri($entity_type, $bundle, $field_name);

}

Members

Namesort descending Modifiers Type Description Overrides
RelationLinkManagerInterface::getRelationUri public function Gets the URI that corresponds to a field. 2