Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-i18n/src/Translator/Loader/PhpArray.php
Строк: 81
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendI18nTranslatorLoader;
use ZendI18nException;
use ZendI18nTranslatorPluralRule as PluralRule;
use ZendI18nTranslatorTextDomain;
/**
* PHP array loader.
*/
class PhpArray implements FileLoaderInterface
{
/**
* load(): defined by FileLoaderInterface.
*
* @see FileLoaderInterface::load()
* @param string $locale
* @param string $filename
* @return TextDomain|null
* @throws ExceptionInvalidArgumentException
*/
public function load($locale, $filename)
{
if (!is_file($filename) || !is_readable($filename)) {
throw new ExceptionInvalidArgumentException(sprintf(
'Could not open file %s for reading',
$filename
));
}
$messages = include $filename;
if (!is_array($messages)) {
throw new ExceptionInvalidArgumentException(sprintf(
'Expected an array, but received %s',
gettype($messages)
));
}
$textDomain = new TextDomain($messages);
if (array_key_exists('', $textDomain)) {
if (isset($textDomain['']['plural_forms'])) {
$textDomain->setPluralRule(
PluralRule::fromString($textDomain['']['plural_forms'])
);
}
unset($textDomain['']);
}
return $textDomain;
}
}