diff core/lib/Drupal/Component/Gettext/PoMemoryWriter.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 129ea1e6d783
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/lib/Drupal/Component/Gettext/PoMemoryWriter.php	Wed Nov 29 16:09:58 2017 +0000
@@ -0,0 +1,87 @@
+<?php
+
+namespace Drupal\Component\Gettext;
+
+/**
+ * Defines a Gettext PO memory writer, to be used by the installer.
+ */
+class PoMemoryWriter implements PoWriterInterface {
+
+  /**
+   * Array to hold all PoItem elements.
+   *
+   * @var array
+   */
+  private $_items;
+
+  /**
+   * Constructor, initialize empty items.
+   */
+  public function __construct() {
+    $this->_items = [];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function writeItem(PoItem $item) {
+    if (is_array($item->getSource())) {
+      $item->setSource(implode(LOCALE_PLURAL_DELIMITER, $item->getSource()));
+      $item->setTranslation(implode(LOCALE_PLURAL_DELIMITER, $item->getTranslation()));
+    }
+    $context = $item->getContext();
+    $this->_items[$context != NULL ? $context : ''][$item->getSource()] = $item->getTranslation();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function writeItems(PoReaderInterface $reader, $count = -1) {
+    $forever = $count == -1;
+    while (($count-- > 0 || $forever) && ($item = $reader->readItem())) {
+      $this->writeItem($item);
+    }
+  }
+
+  /**
+   * Get all stored PoItem's.
+   *
+   * @return array PoItem
+   */
+  public function getData() {
+    return $this->_items;
+  }
+
+  /**
+   * Implements Drupal\Component\Gettext\PoMetadataInterface:setLangcode().
+   *
+   * Not implemented. Not relevant for the MemoryWriter.
+   */
+  public function setLangcode($langcode) {
+  }
+
+  /**
+   * Implements Drupal\Component\Gettext\PoMetadataInterface:getLangcode().
+   *
+   * Not implemented. Not relevant for the MemoryWriter.
+   */
+  public function getLangcode() {
+  }
+
+  /**
+   * Implements Drupal\Component\Gettext\PoMetadataInterface:getHeader().
+   *
+   * Not implemented. Not relevant for the MemoryWriter.
+   */
+  public function getHeader() {
+  }
+
+  /**
+   * Implements Drupal\Component\Gettext\PoMetadataInterface:setHeader().
+   *
+   * Not implemented. Not relevant for the MemoryWriter.
+   */
+  public function setHeader(PoHeader $header) {
+  }
+
+}