You are here

class TestSiteMultilingualInstallTestScript in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/TestSite/TestSiteMultilingualInstallTestScript.php \Drupal\TestSite\TestSiteMultilingualInstallTestScript

Setup file used by TestSiteApplicationTest.

Hierarchy

Expanded class hierarchy of TestSiteMultilingualInstallTestScript

See also

\Drupal\Tests\Scripts\TestSiteApplicationTest

File

core/tests/Drupal/TestSite/TestSiteMultilingualInstallTestScript.php, line 10

Namespace

Drupal\TestSite
View source
class TestSiteMultilingualInstallTestScript implements TestSetupInterface, TestPreinstallInterface {

  /**
   * {@inheritdoc}
   */
  public function preinstall($db_prefix, $site_directory) {

    // Place a custom local translation in the translations directory.
    mkdir($site_directory . '/files/translations', 0777, TRUE);
    file_put_contents($site_directory . '/files/translations/drupal-8.0.0.fr.po', "msgid \"\"\nmsgstr \"\"\nmsgid \"Save and continue\"\nmsgstr \"Enregistrer et continuer\"");
  }

  /**
   * {@inheritdoc}
   */
  public function setup() {
    \Drupal::service('module_installer')
      ->install([
      'test_page_test',
    ]);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestSiteMultilingualInstallTestScript::preinstall public function Runs code prior to a test site install. Overrides TestPreinstallInterface::preinstall
TestSiteMultilingualInstallTestScript::setup public function Run the code to setup the test environment. Overrides TestSetupInterface::setup