| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /* * ********************************************************************
- * Proxmox Addon product developed. (Oct 12, 2018)
- * *
- *
- * 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\ProxmoxAddon\App\UI\Jobs\Providers;
- use ModulesGarden\ProxmoxAddon as main;
- use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\ProxmoxAddon\Core\UI\ResponseTemplates\HtmlDataJsonResponse;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\DataProviders\BaseModelDataProvider;
- use function ModulesGarden\ProxmoxAddon\Core\Helper\sl;
- /**
- * Description of InstanceImageProvider
- *
- * @author Pawel Kopec <pawelk@modulesgardne.com>
- */
- class JobProvider extends BaseModelDataProvider implements AdminArea
- {
- public function __construct()
- {
- parent::__construct(main\Core\Queue\Models\Job::class);
- }
- public function read()
- {
- parent::read();
- $job = $this->data['job'];
- $this->data['job'] = sl('lang')->tr($job);
- }
- public function create()
- {
- }
- public function update()
- {
- }
- public function deleteMass()
- {
- foreach ($this->getRequestValue('massActions') as $id)
- {
- $this->model->where('id', $id)->delete();
- }
- return (new HtmlDataJsonResponse())->setMessageAndTranslate('The selected jobs have been deleted successfully');
- }
- public function delete()
- {
- parent::delete();
- sl('lang')->addReplacementConstant('job', $this->formData['job']);
- return (new HtmlDataJsonResponse())->setMessageAndTranslate('Job :job: has been deleted successfully');
- }
- public function run(){
- sl('lang')->addReplacementConstant('job', $this->formData['job']);
- $task = main\App\Models\Job::findOrFail($this->formData['id']);
- $manager = new main\Core\Queue\Manager($task);
- $manager->fire();
- return (new HtmlDataJsonResponse())->setMessageAndTranslate('Job :job: has been ran successfully');
- }
- }
|