PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
translation
/
src
/
Console
<?php namespace Botble\Translation\Console; use Botble\Translation\Manager; use Illuminate\Console\Command; class CleanCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'cms:translations:clean'; /** * The console command description. * * @var string */ protected $description = 'Clean empty translations'; /** * @var Manager */ protected $manager; /** * CleanCommand constructor. * @param Manager $manager */ public function __construct(Manager $manager) { $this->manager = $manager; parent::__construct(); } /** * Execute the console command. * * @return void * @throws \Exception */ public function handle() { $this->manager->cleanTranslations(); $this->info('Done cleaning translations'); } }
[-] ResetCommand.php
[edit]
[-] CleanCommand.php
[edit]
[+]
..
[-] RemoveUnusedTranslationsCommand.php
[edit]
[-] ExportCommand.php
[edit]
[-] UpdateThemeTranslationCommand.php
[edit]
[-] ImportCommand.php
[edit]