function 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 420
Class
- EntityResource
- Represents entities as resources.
Namespace
Drupal\rest\Plugin\rest\resourceCode
protected function isConfigEntityResource() {
return $this->entityType instanceof ConfigEntityType;
}