protected function ContentTranslationTestBase::getTranslatorPermissions in Drupal 8
Same name in this branch
- 8 core/modules/content_translation/src/Tests/ContentTranslationTestBase.php \Drupal\content_translation\Tests\ContentTranslationTestBase::getTranslatorPermissions()
- 8 core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationTestBase::getTranslatorPermissions()
Returns an array of permissions needed for the translator.
2 calls to ContentTranslationTestBase::getTranslatorPermissions()
- ContentTranslationTestBase::getAdministratorPermissions in core/
modules/ content_translation/ src/ Tests/ ContentTranslationTestBase.php - Returns an array of permissions needed for the administrator.
- ContentTranslationTestBase::setupUsers in core/
modules/ content_translation/ src/ Tests/ ContentTranslationTestBase.php - Creates and activates translator, editor and admin users.
File
- core/
modules/ content_translation/ src/ Tests/ ContentTranslationTestBase.php, line 122
Class
- ContentTranslationTestBase
- Base class for content translation tests.
Namespace
Drupal\content_translation\TestsCode
protected function getTranslatorPermissions() {
return array_filter([
$this
->getTranslatePermission(),
'create content translations',
'update content translations',
'delete content translations',
]);
}