Вход Регистрация
Файл: symfony-2.7/src/Symfony/Bundle/FrameworkBundle/Translation/TranslationLoader.php
Строк: 74
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SymfonyBundleFrameworkBundleTranslation;

use 
SymfonyComponentFinderFinder;
use 
SymfonyComponentTranslationMessageCatalogue;
use 
SymfonyComponentTranslationLoaderLoaderInterface;

/**
 * TranslationLoader loads translation messages from translation files.
 *
 * @author Michel Salib <michelsalib@hotmail.com>
 */
class TranslationLoader
{
    
/**
     * Loaders used for import.
     *
     * @var array
     */
    
private $loaders = array();

    
/**
     * Adds a loader to the translation extractor.
     *
     * @param string          $format The format of the loader
     * @param LoaderInterface $loader
     */
    
public function addLoader($formatLoaderInterface $loader)
    {
        
$this->loaders[$format] = $loader;
    }

    
/**
     * Loads translation messages from a directory to the catalogue.
     *
     * @param string           $directory the directory to look into
     * @param MessageCatalogue $catalogue the catalogue
     */
    
public function loadMessages($directoryMessageCatalogue $catalogue)
    {
        if (!
is_dir($directory)) {
            return;
        }

        foreach (
$this->loaders as $format => $loader) {
            
// load any existing translation files
            
$finder = new Finder();
            
$extension $catalogue->getLocale().'.'.$format;
            
$files $finder->files()->name('*.'.$extension)->in($directory);
            foreach (
$files as $file) {
                
$domain substr($file->getFileName(), 0, -strlen($extension) - 1);
                
$catalogue->addCatalogue($loader->load($file->getPathname(), $catalogue->getLocale(), $domain));
            }
        }
    }
}
Онлайн: 1
Реклама