* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder * @license http://www.gnu.org/licenses/ GNU General Public License, Version 3 */ class Dico { /** * Czech language * * @var string */ const LANG_CZECH = 'cz'; /** * Danish language * * @var string */ const LANG_DANISH = 'da'; /** * German language * * @var string */ const LANG_GERMAN = 'de'; /** * English language * * @var string */ const LANG_ENGLISH = 'en'; /** * Spanish language * * @var string */ const LANG_SPANISH = 'es'; /** * French language * * @var string */ const LANG_FRENCH = 'fr'; /** * Hungarian language * * @var string */ const LANG_HUNGARIAN = 'hu'; /** * Italian language * * @var string */ const LANG_ITALIAN = 'it'; /** * Japanese language * * @var string */ const LANG_JAPANESE = 'jp'; /** * Korean language * * @var string */ const LANG_KOREAN = 'kr'; /** * Norwegian language * * @var string */ const LANG_NORWEGIAN = 'nb'; /** * Dutch language * * @var string */ const LANG_DUTCH = 'nl'; /** * Polish language * * @var string */ const LANG_POLISH = 'pl'; /** * Portuguese language * * @var string */ const LANG_PORTUGUESE = 'pt'; /** * Brazilian Portuguese language * * @var string */ const LANG_BRAZILIAN_PORTUGUESE = 'pt_BR'; /** * Romanian language * * @var string */ const LANG_ROMANIAN = 'ro'; /** * Russian language * * @var string */ const LANG_RUSSIAN = 'ru'; /** * Slovak language * * @var string */ const LANG_SLOVAK = 'sk'; /** * Turkish language * * @var string */ const LANG_TURKISH = 'tr'; /** * Chinese language * * @var string */ const LANG_CHINESE = 'zh'; /* * Protected properties */ protected $tagName = 'dico'; protected $entries = array(); /** * Create a new Dictionary object * * @return static */ public static function create() { return new static(); } /** * Set the translatable entry for the specific language * * @param string $language Language id * @param string $entryId Entry id * @param string $entryValue Translated entry value * @return static */ public function setEntry($language, $entryId, $entryValue) { $language = (string)$language; $entryId = (string)$entryId; $entryValue = (string)$entryValue; if (!isset($this->entries[$language]) && $entryValue) { $this->entries[$language] = array(); } if ($entryValue) { $this->entries[$language][$entryId] = $entryValue; } else { if (isset($this->entries[$language][$entryId])) { unset($this->entries[$language][$entryId]); } } return $this; } /** * Remove entries of the given id * * @param string $entryId Entry id that should be removed * @param string $language (optional) Only remove entries of the given language * @return static */ public function removeEntry($entryId, $language = null) { $entryId = (string)$entryId; if ($language) { $language = (string)$language; if (isset($this->entries[$language])) { unset($this->entries[$language][$entryId]); } } else { foreach ($this->entries as $language => $entries) { if (isset($entries[$entryId])) { unset($entries[$language][$entryId]); } } } return $this; } /** * Remove entries of the given language * * @param string $language Language which entries should be removed * @param string $entryId (optional) Only remove the given entry id * @return static */ public function removeLanguage($language, $entryId = null) { $language = (string)$language; if (isset($this->entries[$language])) { if ($entryId) { $entryId = (string)$entryId; unset($this->entries[$language][$entryId]); } else { unset($this->entries[$language]); } } return $this; } /** * Remove all entries from the Dictionary * * @return static */ public function removeEntries() { $this->entries = array(); return $this; } /** * Render the Dico XML element * * @param \DOMDocument $domDocument DOMDocument for which the Dico XML element should be rendered * @return \DOMElement */ public function render(\DOMDocument $domDocument) { $xmlElement = $domDocument->createElement($this->tagName); foreach ($this->entries as $language => $entries) { $languageElement = $domDocument->createElement('language'); $languageElement->setAttribute('id', $language); foreach ($entries as $entryId => $entryValue) { $entryElement = $domDocument->createElement($entryId, $entryValue); $languageElement->appendChild($entryElement); } $xmlElement->appendChild($languageElement); } return $xmlElement; } }