protected function ContentTestTranslationUITest::getTranslatorPermissions in Drupal 8
Same name and namespace in other branches
- 9 core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php \Drupal\Tests\content_translation\Functional\ContentTestTranslationUITest::getTranslatorPermissions()
Returns an array of permissions needed for the translator.
Overrides ContentTranslationTestBase::getTranslatorPermissions
File
- core/
modules/ content_translation/ tests/ src/ Functional/ ContentTestTranslationUITest.php, line 41
Class
- ContentTestTranslationUITest
- Tests the test content translation UI with the test entity.
Namespace
Drupal\Tests\content_translation\FunctionalCode
protected function getTranslatorPermissions() {
return array_merge(parent::getTranslatorPermissions(), [
'administer entity_test content',
'view test entity',
]);
}