2019-08-12 15:21:50 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Listeners;
|
|
|
|
|
|
|
|
use Illuminate\Filesystem\Filesystem;
|
|
|
|
|
|
|
|
class CopyPluginAssets
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var Filesystem
|
|
|
|
*/
|
|
|
|
protected $filesystem;
|
|
|
|
|
|
|
|
public function __construct(Filesystem $filesystem)
|
|
|
|
{
|
|
|
|
$this->filesystem = $filesystem;
|
|
|
|
}
|
|
|
|
|
2019-08-12 17:48:40 +08:00
|
|
|
public function handle($event)
|
2019-08-12 15:21:50 +08:00
|
|
|
{
|
|
|
|
$plugin = $event->plugin;
|
|
|
|
$dir = public_path('plugins/'.$plugin->name);
|
|
|
|
$this->filesystem->deleteDirectory($dir);
|
|
|
|
|
|
|
|
$this->filesystem->copyDirectory(
|
|
|
|
$plugin->getPath().DIRECTORY_SEPARATOR.'assets',
|
|
|
|
$dir.'/assets'
|
|
|
|
);
|
|
|
|
$this->filesystem->copyDirectory(
|
|
|
|
$plugin->getPath().DIRECTORY_SEPARATOR.'lang',
|
|
|
|
$dir.'/lang'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|