You are here

protected function L10nUpdateTestBase::makePoFile in Localization update 7.2

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.

int $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 L10nUpdateTestBase::makePoFile()
L10nUpdateTestBase::setTranslationFiles in tests/L10nUpdateTestBase.test
Setup the environment containing local and remote translation files.

File

tests/L10nUpdateTestBase.test, line 87
Contains L10nUpdateTest.

Class

L10nUpdateTestBase
Tests for update translations.

Code

protected 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 7\\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 = (object) 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($file);
}