public function ModerationInformationInterface::shouldModerateEntitiesOfBundle in Drupal 9
Same name and namespace in other branches
- 8 core/modules/content_moderation/src/ModerationInformationInterface.php \Drupal\content_moderation\ModerationInformationInterface::shouldModerateEntitiesOfBundle()
Determines if an entity type/bundle entities should be moderated.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition to check.
string $bundle: The bundle to check.
Return value
bool TRUE if an entity type/bundle entities should be moderated, FALSE otherwise.
1 method overrides ModerationInformationInterface::shouldModerateEntitiesOfBundle()
- ModerationInformation::shouldModerateEntitiesOfBundle in core/
modules/ content_moderation/ src/ ModerationInformation.php - Determines if an entity type/bundle entities should be moderated.
File
- core/
modules/ content_moderation/ src/ ModerationInformationInterface.php, line 48
Class
- ModerationInformationInterface
- Interface for moderation_information service.
Namespace
Drupal\content_moderationCode
public function shouldModerateEntitiesOfBundle(EntityTypeInterface $entity_type, $bundle);