function ResourceIdentifier::getResourceType
Same name in other branches
- 9 core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php \Drupal\jsonapi\JsonApiResource\ResourceIdentifier::getResourceType()
- 10 core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php \Drupal\jsonapi\JsonApiResource\ResourceIdentifier::getResourceType()
- 11.x core/modules/jsonapi/src/JsonApiResource/ResourceIdentifier.php \Drupal\jsonapi\JsonApiResource\ResourceIdentifier::getResourceType()
Overrides ResourceIdentifierInterface::getResourceType
1 call to ResourceIdentifier::getResourceType()
- ResourceIdentifier::withArity in core/
modules/ jsonapi/ src/ JsonApiResource/ ResourceIdentifier.php - Returns a copy of the given ResourceIdentifier with the given arity.
File
-
core/
modules/ jsonapi/ src/ JsonApiResource/ ResourceIdentifier.php, line 104
Class
- ResourceIdentifier
- Represents a JSON:API resource identifier object.
Namespace
Drupal\jsonapi\JsonApiResourceCode
public function getResourceType() {
if (!isset($this->resourceType)) {
/* @var \Drupal\jsonapi\ResourceType\ResourceTypeRepositoryInterface $resource_type_repository */
$resource_type_repository = \Drupal::service('jsonapi.resource_type.repository');
$this->resourceType = $resource_type_repository->getByTypeName($this->getTypeName());
}
return $this->resourceType;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.