private function LocaleUpdateTest::makePoFile

Creates a translation file and tests its timestamp.

Parameters

string $path: Path of the file relative to the public file path.

string $filename: Name of the file to create.

integer $timestamp: Timestamp to set the file to. Defaults to current time.

array $translations: Array of source/target value translation strings. Only singular strings are supported, no plurals. No double quotes are allowed in source and translations strings.

1 call to LocaleUpdateTest::makePoFile()
LocaleUpdateTest::setTranslationFiles in drupal/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php
Setup the environment containting local and remote translation files.

File

drupal/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php, line 118
Contains Drupal\locale\Tests\LocaleUpdateTest.

Class

LocaleUpdateTest
Tests for update translations.

Namespace

Drupal\locale\Tests

Code

private function makePoFile($path, $filename, $timestamp = NULL, $translations = array()) {
  $timestamp = $timestamp ? $timestamp : REQUEST_TIME;
  $path = 'public://' . $path;
  $text = '';
  $po_header = <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\\n"

EOF;

  // Convert array of translations to Gettext source and translation strings.
  if ($translations) {
    foreach ($translations as $source => $target) {
      $text .= 'msgid "' . $source . '"' . "\n";
      $text .= 'msgstr "' . $target . '"' . "\n";
    }
  }
  file_prepare_directory($path, FILE_CREATE_DIRECTORY);
  $file = entity_create('file', array(
    'uid' => 1,
    'filename' => $filename,
    'uri' => $path . '/' . $filename,
    'filemime' => 'text/x-gettext-translation',
    'timestamp' => $timestamp,
    'status' => FILE_STATUS_PERMANENT,
  ));
  file_put_contents($file->uri, $po_header . $text);
  touch(drupal_realpath($file->uri), $timestamp);
  $file
    ->save();
}