You are here

protected function MenuLinkContentTranslationUITest::getAdministratorPermissions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/menu_link_content/src/Tests/MenuLinkContentTranslationUITest.php \Drupal\menu_link_content\Tests\MenuLinkContentTranslationUITest::getAdministratorPermissions()

Returns an array of permissions needed for the administrator.

Overrides ContentTranslationTestBase::getAdministratorPermissions

File

core/modules/menu_link_content/src/Tests/MenuLinkContentTranslationUITest.php, line 56
Contains \Drupal\menu_link_content\Tests\MenuLinkContentTranslationUITest.

Class

MenuLinkContentTranslationUITest
Tests the menu link content translation UI.

Namespace

Drupal\menu_link_content\Tests

Code

protected function getAdministratorPermissions() {
  return array_merge(parent::getAdministratorPermissions(), array(
    'administer themes',
    'view the administration theme',
  ));
}