protected function EntityResource::isConfigEntityResource in Drupal 10
Same name and namespace in other branches
- 8 core/modules/rest/src/Plugin/rest/resource/EntityResource.php \Drupal\rest\Plugin\rest\resource\EntityResource::isConfigEntityResource()
- 9 core/modules/rest/src/Plugin/rest/resource/EntityResource.php \Drupal\rest\Plugin\rest\resource\EntityResource::isConfigEntityResource()
Checks if this resource is for a Config Entity.
Return value
bool TRUE if the entity is a Config Entity, FALSE otherwise.
1 call to EntityResource::isConfigEntityResource()
- EntityResource::availableMethods in core/
modules/ rest/ src/ Plugin/ rest/ resource/ EntityResource.php - Returns the available HTTP request methods on this plugin.
File
- core/
modules/ rest/ src/ Plugin/ rest/ resource/ EntityResource.php, line 418
Class
- EntityResource
- Represents entities as resources.
Namespace
Drupal\rest\Plugin\rest\resourceCode
protected function isConfigEntityResource() {
return $this->entityType instanceof ConfigEntityType;
}