forked from GithubBackups/tinyib
30 lines
874 B
PHP
30 lines
874 B
PHP
<?php
|
|
|
|
namespace Gettext\Extractors;
|
|
|
|
use Gettext\Translations;
|
|
use Illuminate\Filesystem\Filesystem;
|
|
use Illuminate\View\Compilers\BladeCompiler;
|
|
|
|
/**
|
|
* Class to get gettext strings from blade.php files returning arrays.
|
|
*/
|
|
class Blade extends Extractor implements ExtractorInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function fromString($string, Translations $translations, array $options = [])
|
|
{
|
|
if (empty($options['facade'])) {
|
|
$cachePath = empty($options['cachePath']) ? sys_get_temp_dir() : $options['cachePath'];
|
|
$bladeCompiler = new BladeCompiler(new Filesystem(), $cachePath);
|
|
$string = $bladeCompiler->compileString($string);
|
|
} else {
|
|
$string = $options['facade']::compileString($string);
|
|
}
|
|
|
|
PhpCode::fromString($string, $translations, $options);
|
|
}
|
|
}
|