Neos\Flow\I18n\Cldr\CldrModel::__construct PHP 메소드

__construct() 공개 메소드

Accepts array of absolute paths to CLDR files. This array can have one element (if model represents one CLDR file) or many elements (if group of CLDR files is going to be represented by this model).
public __construct ( array $sourcePaths )
$sourcePaths array
    public function __construct(array $sourcePaths)
    {
        $this->sourcePaths = $sourcePaths;
        $this->cacheKey = md5(implode(';', $sourcePaths));
    }