![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-i18n/src/Translator/Loader/ |
<?php namespace Laminas\I18n\Translator\Loader; use Laminas\I18n\Exception; use Laminas\I18n\Translator\Plural\Rule as PluralRule; use Laminas\I18n\Translator\TextDomain; use function gettype; use function is_array; use function sprintf; /** * PHP Memory array loader. */ class PhpMemoryArray implements RemoteLoaderInterface { /** @var array */ protected $messages; /** @param array $messages */ public function __construct($messages) { $this->messages = $messages; } /** * Load translations from a remote source. * * @param string $locale * @param string $textDomain * @return TextDomain * @throws Exception\InvalidArgumentException */ public function load($locale, $textDomain) { if (! is_array($this->messages)) { throw new Exception\InvalidArgumentException( sprintf('Expected an array, but received %s', gettype($this->messages)) ); } if (! isset($this->messages[$textDomain])) { throw new Exception\InvalidArgumentException( sprintf('Expected textdomain "%s" to be an array, but it is not set', $textDomain) ); } if (! isset($this->messages[$textDomain][$locale])) { throw new Exception\InvalidArgumentException( sprintf('Expected locale "%s" to be an array, but it is not set', $locale) ); } $textDomain = new TextDomain($this->messages[$textDomain][$locale]); if ($textDomain->offsetExists('')) { if (isset($textDomain['']['plural_forms'])) { $textDomain->setPluralRule( PluralRule::fromString($textDomain['']['plural_forms']) ); } unset($textDomain['']); } return $textDomain; } }