You are here

public function ModerationHandler::isModeratedEntity in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/src/Entity/Handler/ModerationHandler.php \Drupal\content_moderation\Entity\Handler\ModerationHandler::isModeratedEntity()

File

core/modules/content_moderation/src/Entity/Handler/ModerationHandler.php, line 34

Class

ModerationHandler
Common customizations for most/all entities.

Namespace

Drupal\content_moderation\Entity\Handler

Code

public function isModeratedEntity(ContentEntityInterface $entity) {

  // Moderate all entities included in the moderation workflow by default.
  return TRUE;
}