function ModerationInformation::isModeratedEntityType

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/src/ModerationInformation.php \Drupal\content_moderation\ModerationInformation::isModeratedEntityType()
  2. 8.9.x core/modules/content_moderation/src/ModerationInformation.php \Drupal\content_moderation\ModerationInformation::isModeratedEntityType()
  3. 10 core/modules/content_moderation/src/ModerationInformation.php \Drupal\content_moderation\ModerationInformation::isModeratedEntityType()

Determines if an entity type has at least one moderated bundle.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition to check.

Return value

bool TRUE if an entity type has a moderated bundle, FALSE otherwise.

Overrides ModerationInformationInterface::isModeratedEntityType

File

core/modules/content_moderation/src/ModerationInformation.php, line 64

Class

ModerationInformation
General service for moderation-related questions about Entity API.

Namespace

Drupal\content_moderation

Code

public function isModeratedEntityType(EntityTypeInterface $entity_type) {
  $bundles = $this->bundleInfo
    ->getBundleInfo($entity_type->id());
  return !empty(array_column($bundles, 'workflow'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.