public function Workflow::preSave in Drupal 10
Same name and namespace in other branches
- 8 core/modules/workflows/src/Entity/Workflow.php \Drupal\workflows\Entity\Workflow::preSave()
- 9 core/modules/workflows/src/Entity/Workflow.php \Drupal\workflows\Entity\Workflow::preSave()
Acts on an entity before the presave hook is invoked.
Used before the entity is saved and before invoking the presave hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automatically. @todo Adjust existing implementations and the documentation according to https://www.drupal.org/node/2577609 to have a consistent API.
Parameters
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.
Throws
\Exception When there is a problem that should prevent saving the entity.
Overrides ConfigEntityBase::preSave
See also
\Drupal\Core\Field\FieldItemListInterface::preSave()
File
- core/
modules/ workflows/ src/ Entity/ Workflow.php, line 108
Class
- Workflow
- Defines the workflow entity.
Namespace
Drupal\workflows\EntityCode
public function preSave(EntityStorageInterface $storage) {
$workflow_type = $this
->getTypePlugin();
$missing_states = array_diff($workflow_type
->getRequiredStates(), array_keys($this
->getTypePlugin()
->getStates()));
if (!empty($missing_states)) {
throw new RequiredStateMissingException(sprintf("Workflow type '{$workflow_type->label()}' requires states with the ID '%s' in workflow '{$this->id()}'", implode("', '", $missing_states)));
}
parent::preSave($storage);
}