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()

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.