You are here

protected function EntityResource::isConfigEntityResource in Drupal 8

Same name and namespace in other branches
  1. 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 426

Class

EntityResource
Represents entities as resources.

Namespace

Drupal\rest\Plugin\rest\resource

Code

protected function isConfigEntityResource() {
  return $this->entityType instanceof ConfigEntityType;
}