diff --git a/core/modules/workflows/src/Form/WorkflowStateAddForm.php b/core/modules/workflows/src/Form/WorkflowStateAddForm.php index c9b46e2c35222cd92387b844b8c9a74ec06c78fa..0b368585b737675d906bd497a91e83fbe1b9cdd8 100644 --- a/core/modules/workflows/src/Form/WorkflowStateAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowStateAddForm.php @@ -11,6 +11,13 @@ */ class WorkflowStateAddForm extends EntityForm { + /** + * {@inheritdoc} + */ + public function getFormId() { + return 'workflow_state_add_form'; + } + /** * {@inheritdoc} */ diff --git a/core/modules/workflows/src/Form/WorkflowStateEditForm.php b/core/modules/workflows/src/Form/WorkflowStateEditForm.php index 75af1d6b40eb831d5117a10853ebefa0b313539c..f21508ff643e75b55f0392b86ec809de29964f87 100644 --- a/core/modules/workflows/src/Form/WorkflowStateEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowStateEditForm.php @@ -19,6 +19,13 @@ class WorkflowStateEditForm extends EntityForm { */ protected $stateId; + /** + * {@inheritdoc} + */ + public function getFormId() { + return 'workflow_state_edit_form'; + } + /** * {@inheritdoc} */ diff --git a/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php b/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php index 1c557d929b00317b8bd0f8ab0ba59b51685d6bcf..fe3a40636d659eed594d8245c2a1a8137e247972 100644 --- a/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php @@ -12,6 +12,13 @@ */ class WorkflowTransitionAddForm extends EntityForm { + /** + * {@inheritdoc} + */ + public function getFormId() { + return 'workflow_transition_add_form'; + } + /** * {@inheritdoc} */ diff --git a/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php b/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php index b6f65a48a8e6a90d0fdc81eedaf4baf0e3e48758..5bbabae6f7af3b75eda191aab7594e7b33ddc515 100644 --- a/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php @@ -20,6 +20,13 @@ class WorkflowTransitionEditForm extends EntityForm { */ protected $transitionId; + /** + * {@inheritdoc} + */ + public function getFormId() { + return 'workflow_transition_edit_form'; + } + /** * {@inheritdoc} */