mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php namespace System\Console;
|
|
|
|
use Illuminate\Console\Command;
|
|
use System\Classes\PluginManager;
|
|
use System\Models\PluginVersion;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
/**
|
|
* Console command to disable a plugin.
|
|
*
|
|
* @package october\system
|
|
* @author Lucas Zamora
|
|
*/
|
|
class PluginDisable extends Command
|
|
{
|
|
|
|
/**
|
|
* The console command name.
|
|
* @var string
|
|
*/
|
|
protected $name = 'plugin:disable';
|
|
|
|
/**
|
|
* The console command description.
|
|
* @var string
|
|
*/
|
|
protected $description = 'Disable an existing plugin.';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$pluginManager = PluginManager::instance();
|
|
$pluginName = $this->argument('name');
|
|
$pluginName = $pluginManager->normalizeIdentifier($pluginName);
|
|
|
|
if (!$pluginManager->hasPlugin($pluginName)) {
|
|
return $this->error(sprintf('Unable to find a registered plugin called "%s"', $pluginName));
|
|
}
|
|
|
|
// Disable this plugin
|
|
$pluginManager->disablePlugin($pluginName);
|
|
|
|
$plugin = PluginVersion::where('code', $pluginName)->first();
|
|
$plugin->is_disabled = true;
|
|
$plugin->save();
|
|
|
|
|
|
$this->output->writeln(sprintf('<info>%s:</info> disabled.', $pluginName));
|
|
}
|
|
|
|
/**
|
|
* Get the console command arguments.
|
|
* @return array
|
|
*/
|
|
protected function getArguments()
|
|
{
|
|
return [
|
|
['name', InputArgument::REQUIRED, 'The name of the plugin. Eg: AuthorName.PluginName'],
|
|
];
|
|
}
|
|
}
|