public function ModerationHandlerInterface::onPresave in Workbench Moderation 8
Same name and namespace in other branches
- 8.2 src/Entity/Handler/ModerationHandlerInterface.php \Drupal\workbench_moderation\Entity\Handler\ModerationHandlerInterface::onPresave()
Work to be done before saving en entity.
Parameters
\Drupal\Core\Entity\ContentEntityInterface $entity: The entity to modify.
bool $default_revision: Whether the new revision should be made the default revision.
bool $published_state: Whether the state being transitioned to is a published state or not.
1 method overrides ModerationHandlerInterface::onPresave()
- ModerationHandler::onPresave in src/
Entity/ Handler/ ModerationHandler.php - Work to be done before saving en entity.
File
- src/
Entity/ Handler/ ModerationHandlerInterface.php, line 28
Class
- ModerationHandlerInterface
- Defines operations that need to vary by entity type.
Namespace
Drupal\workbench_moderation\Entity\HandlerCode
public function onPresave(ContentEntityInterface $entity, $default_revision, $published_state);