| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**********************************************************************
- * ProxmoxVPS developed. (26.03.19)
- * *
- *
- * CREATED BY MODULESGARDEN -> http://modulesgarden.com
- * CONTACT -> contact@modulesgarden.com
- *
- *
- * This software is furnished under a license and may be used and copied
- * only in accordance with the terms of such license and with the
- * inclusion of the above copyright notice. This software or any other
- * copies thereof may not be provided or otherwise made available to any
- * other person. No title to and ownership of the software is hereby
- * transferred.
- *
- *
- **********************************************************************/
- namespace ModulesGarden\Servers\ProxmoxVps\App\Http\Actions;
- use ModulesGarden\ProxmoxAddon\App\Configuration\Addon\Update\AddonUpgradeService;
- use ModulesGarden\Servers\ProxmoxVps\App\Helpers\ProxmoxAddonValidator;
- use ModulesGarden\Servers\ProxmoxVps\App\Http\Admin\Product;
- use ModulesGarden\Servers\ProxmoxVps\Core\App\Controllers\Instances\AddonController;
- class ConfigOptions extends AddonController
- {
- /**
- * @var AddonUpgradeService
- */
- private $addonUpgradeService;
- public function execute($params = null)
- {
- if (($this->getRequestValue('action') === 'module-settings' || ($this->getRequestValue('loadData') && $this->getRequestValue('ajax') == '1')))
- {
- ProxmoxAddonValidator::isInstalledOrFail();
- $this->addonUpgradeService = new AddonUpgradeService();
- $this->addonUpgradeService->run();
- return [Product::class, 'index'];
- }
- else
- {
- if ($this->getRequestValue('action') !== 'save')
- {
- return [];
- }
- }
- }
- }
|