This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Translation/Loader/PhpFileLoader.php

36 lines
897 B
PHP
Raw Normal View History

2010-09-27 08:45:29 +01:00
<?php
namespace Symfony\Component\Translation\Loader;
use Symfony\Component\Translation\Resource\FileResource;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* PhpFileLoader loads translations from PHP files returning an array of translations.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2010-09-27 08:45:29 +01:00
*/
class PhpFileLoader extends ArrayLoader implements LoaderInterface
2010-09-27 08:45:29 +01:00
{
/**
* {@inheritdoc}
*/
public function load($resource, $locale, $domain = 'messages')
2010-09-27 08:45:29 +01:00
{
$messages = require($resource);
$catalogue = parent::load($messages, $locale, $domain);
2010-09-27 08:45:29 +01:00
$catalogue->addResource(new FileResource($resource));
return $catalogue;
}
}