Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getPermissionGranularity()
  2. 9 core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getPermissionGranularity()

Gets the permission granularity level.

The allowed values are respectively "entity_type" or "bundle".

Return value

string Whether a module exposing permissions for the current entity type should use entity-type level granularity or bundle level granularity.

Overrides EntityTypeInterface::getPermissionGranularity

File

core/lib/Drupal/Core/Entity/EntityType.php, line 628

Class

EntityType
Provides an implementation of an entity type and its metadata.

Namespace

Drupal\Core\Entity

Code

public function getPermissionGranularity() {
  return $this->permission_granularity;
}