You are here

protected function ContentTranslationTestBase::getEditorPermissions in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationTestBase::getEditorPermissions()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationTestBase::getEditorPermissions()

Returns an array of permissions needed for the editor.

2 calls to ContentTranslationTestBase::getEditorPermissions()
ContentTranslationTestBase::getAdministratorPermissions in core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php
Returns an array of permissions needed for the administrator.
ContentTranslationTestBase::setupUsers in core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php
Creates and activates translator, editor and admin users.
5 methods override ContentTranslationTestBase::getEditorPermissions()
ContentTranslationPendingRevisionTestBase::getEditorPermissions in core/modules/content_translation/tests/src/Functional/ContentTranslationPendingRevisionTestBase.php
Returns an array of permissions needed for the editor.
ContentTranslationSyncImageTest::getEditorPermissions in core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php
Returns an array of permissions needed for the editor.
ContentTranslationWorkflowsTest::getEditorPermissions in core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php
Returns an array of permissions needed for the editor.
MediaTranslationUITest::getEditorPermissions in core/modules/media/tests/src/Functional/MediaTranslationUITest.php
Returns an array of permissions needed for the editor.
NodeTranslationUITest::getEditorPermissions in core/modules/node/tests/src/Functional/NodeTranslationUITest.php
Returns an array of permissions needed for the editor.

File

core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php, line 133

Class

ContentTranslationTestBase
Base class for content translation tests.

Namespace

Drupal\Tests\content_translation\Functional

Code

protected function getEditorPermissions() {

  // Every entity-type-specific test needs to define these.
  return [];
}