Skip to content
Snippets Groups Projects
Commit eb83216e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2855428 by Sam152, jhedstrom, timmillwood: Workflow state and...

Issue #2855428 by Sam152, jhedstrom, timmillwood: Workflow state and transition add/edit form IDs have a '-' in them
parent b0af9e99
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -11,6 +11,13 @@
*/
class WorkflowStateAddForm extends EntityForm {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'workflow_state_add_form';
}
/**
* {@inheritdoc}
*/
......
......@@ -19,6 +19,13 @@ class WorkflowStateEditForm extends EntityForm {
*/
protected $stateId;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'workflow_state_edit_form';
}
/**
* {@inheritdoc}
*/
......
......@@ -12,6 +12,13 @@
*/
class WorkflowTransitionAddForm extends EntityForm {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'workflow_transition_add_form';
}
/**
* {@inheritdoc}
*/
......
......@@ -20,6 +20,13 @@ class WorkflowTransitionEditForm extends EntityForm {
*/
protected $transitionId;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'workflow_transition_edit_form';
}
/**
* {@inheritdoc}
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment