protected function ContentEntitySourceContentModerationTest::createEditorialWorkflow in Translation Management Tool 8
Creates a workflow entity.
Parameters
string $bundle: The node bundle.
2 calls to ContentEntitySourceContentModerationTest::createEditorialWorkflow()
- ContentEntitySourceContentModerationTest::setUp in sources/
content/ tests/ src/ Functional/ ContentEntitySourceContentModerationTest.php - Overrides DrupalWebTestCase::setUp()
- ContentEntitySourceContentModerationTest::testModerationWithUntranslatableCompositeEntityReference in sources/
content/ tests/ src/ Functional/ ContentEntitySourceContentModerationTest.php - Tests content moderation translations with untranslatable composites.
File
- sources/
content/ tests/ src/ Functional/ ContentEntitySourceContentModerationTest.php, line 611
Class
- ContentEntitySourceContentModerationTest
- Tests content entity source integration with content moderation.
Namespace
Drupal\Tests\tmgmt_content\FunctionalCode
protected function createEditorialWorkflow($bundle) {
if (!isset($this->workflow)) {
$this->workflow = Workflow::create([
'type' => 'content_moderation',
'id' => $this
->randomMachineName(),
'label' => 'Editorial',
'type_settings' => [
'states' => [
'archived' => [
'label' => 'Archived',
'weight' => 5,
'published' => FALSE,
'default_revision' => TRUE,
],
'draft' => [
'label' => 'Draft',
'published' => FALSE,
'default_revision' => FALSE,
'weight' => -5,
],
'published' => [
'label' => 'Published',
'published' => TRUE,
'default_revision' => TRUE,
'weight' => 0,
],
],
'transitions' => [
'archive' => [
'label' => 'Archive',
'from' => [
'published',
],
'to' => 'archived',
'weight' => 2,
],
'archived_draft' => [
'label' => 'Restore to Draft',
'from' => [
'archived',
],
'to' => 'draft',
'weight' => 3,
],
'archived_published' => [
'label' => 'Restore',
'from' => [
'archived',
],
'to' => 'published',
'weight' => 4,
],
'create_new_draft' => [
'label' => 'Create New Draft',
'to' => 'draft',
'weight' => 0,
'from' => [
'draft',
'published',
],
],
'publish' => [
'label' => 'Publish',
'to' => 'published',
'weight' => 1,
'from' => [
'draft',
'published',
],
],
],
],
]);
}
$this->workflow
->getTypePlugin()
->addEntityTypeAndBundle('node', $bundle);
$this->workflow
->save();
}