mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class InstallPhyreModule extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'phyre:install-module {module}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Install a Phyre module.';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
$this->info('Installing Phyre module...');
|
|
|
|
$modulePath = base_path('Modules/' . $this->argument('module'));
|
|
if (!is_dir($modulePath)) {
|
|
$this->error('Module not found.');
|
|
return;
|
|
}
|
|
$postInstallPath = $modulePath . '/PostInstall.php';
|
|
if (!file_exists($postInstallPath)) {
|
|
$this->error('PostInstall.php not found.');
|
|
return;
|
|
}
|
|
$postInstall = app()->make('Modules\\' . $this->argument('module') . '\\PostInstall');
|
|
if (!method_exists($postInstall, 'run')) {
|
|
$this->error('PostInstall::run() not found.');
|
|
return;
|
|
}
|
|
$postInstall->run();
|
|
|
|
$this->info('Phyre module installed successfully.');
|
|
}
|
|
}
|