51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use DirectoryIterator;
|
|
use Illuminate\Console\Command;
|
|
|
|
class LangGenerate extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'lang:generate';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Generate i18n json assets';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$dirs = new DirectoryIterator(resource_path('lang').'/');
|
|
|
|
foreach ($dirs as $dir) {
|
|
if (! $dir->isDir()) {
|
|
continue;
|
|
}
|
|
|
|
$lang = $dir->getFilename();
|
|
if ($lang == '.' || $lang == '..') {
|
|
continue;
|
|
}
|
|
|
|
$this->call('lang:js', [
|
|
'--json' => true,
|
|
'--source' => $dir->getPathname(),
|
|
'target' => 'public/js/langs/'.$lang.'.json',
|
|
]);
|
|
}
|
|
}
|
|
}
|