Issue #2818267 by vanessakovalsky, timmillwood, shashikant_chauhan, Sam152: Remove delete link from Manage moderation settings page

8.3.x
Alex Pott 2017-01-06 13:14:42 +00:00
parent bb55292a88
commit ac5ccef90a
2 changed files with 14 additions and 0 deletions

View File

@ -139,4 +139,17 @@ class BundleModerationConfigurationForm extends EntityForm {
}
}
/**
* {@inheritdoc}
*/
protected function actions(array $form, FormStateInterface $form_state) {
$actions['submit'] = [
'#type' => 'submit',
'#value' => $this->t('Save'),
'#submit' => ['::submitForm', '::save'],
];
return $actions;
}
}

View File

@ -50,6 +50,7 @@ class ModerationStateNodeTypeTest extends ModerationStateTestBase {
$this->assertLinkByHref('admin/structure/types/manage/not_moderated/moderation');
$this->drupalGet('admin/structure/types/manage/not_moderated/moderation');
$this->assertOptionSelected('edit-workflow', '');
$this->assertNoLink('Delete');
$edit['workflow'] = 'editorial';
$this->drupalPostForm(NULL, $edit, t('Save'));