/home/techb158/immovalet.com/vendor/botble/plugin-management/src/Commands
NameSizeModeActions
PluginActivateAllCommand.php13590644editdlrm
PluginActivateCommand.php14810644editdlrm
PluginAssetsPublishCommand.php14360644editdlrm
PluginDeactivateCommand.php14370644editdlrm
PluginRemoveCommand.php16510644editdlrm
Edit: /home/techb158/immovalet.com/vendor/botble/plugin-management/src/Commands/PluginActivateCommand.php (1481B)
pluginService = $pluginService; } /** * @return boolean * @throws FileNotFoundException */ public function handle() { if (!preg_match('/^[a-z0-9\-]+$/i', $this->argument('name'))) { $this->error('Only alphabetic characters are allowed.'); return 1; } $plugin = strtolower($this->argument('name')); $result = $this->pluginService->activate($plugin); if ($result['error']) { $this->error($result['message']); return 1; } $this->info($result['message']); return 0; } }