-
-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.0-dev' into dashboard-widget-fix
- Loading branch information
Showing
14 changed files
with
873 additions
and
398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?php | ||
|
||
namespace Leantime\Domain\Files\Hxcontrollers; | ||
|
||
use Leantime\Domain\Files\Repositories\Files as FileRepository; | ||
use Leantime\Domain\Files\Services\Files as FileService; | ||
|
||
use Leantime\Core\Controller\HtmxController; | ||
|
||
|
||
|
||
class FileManager extends HtmxController | ||
{ | ||
|
||
protected static string $view = 'files::components.file-manager'; | ||
|
||
|
||
private FileRepository $filesRepo; | ||
private FileService $filesService; | ||
/** | ||
* Controller constructor | ||
* | ||
*/ | ||
public function init(FileRepository $filesRepo, FileService $filesService): void | ||
{ | ||
$this->filesRepo = $filesRepo; | ||
$this->filesService = $filesService; | ||
} | ||
|
||
|
||
|
||
public function get($params): void | ||
{ | ||
$module = $params['module']; | ||
$moduleId = $params['moduleId']; | ||
$currentModule = session('currentProject'); | ||
|
||
|
||
if ($module === 'project') { | ||
$moduleId = session('currentProject'); | ||
} | ||
|
||
if (isset($_POST['upload']) || isset($_FILES['file'])) { | ||
if (isset($_FILES['file'])) { | ||
$this->filesRepo->upload($_FILES, $module, session('currentProject')); | ||
// $this->tpl->setNotification('notifications.file_upload_success', 'success', 'file_created'); | ||
} else { | ||
// $this->tpl->setNotification('notifications.file_upload_error', 'error'); | ||
} | ||
} | ||
|
||
if (isset($_GET['delFile']) === true) { | ||
$result = $this->filesService->deleteFile($_GET['delFile']); | ||
|
||
if ($result === true) { | ||
// $this->tpl->setNotification($this->language->__('notifications.file_deleted'), 'success', 'file_deleted'); | ||
|
||
// return Frontcontroller::redirect(BASE_URL . '/files/showAll' . ($_GET['modalPopUp'] ?? '') ? '?modalPopUp=true' : ''); | ||
} else { | ||
// $this->tpl->setNotification($result['msg'], 'success'); | ||
} | ||
} | ||
|
||
|
||
$this->tpl->assign('currentModule', $currentModule); | ||
$this->tpl->assign('moduleId', $moduleId); | ||
$this->tpl->assign('module', $module); | ||
$this->tpl->assign('modules', $this->filesRepo->getModules(session('userdata.id'))); | ||
$this->tpl->assign('imgExtensions', ['jpg', 'jpeg', 'png', 'gif', 'psd', 'bmp', 'tif', 'thm', 'yuv', 'webpe']); | ||
$this->tpl->assign('files', $this->filesRepo->getFilesByModule($module, $moduleId)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
namespace Leantime\Domain\Files\Hxcontrollers; | ||
|
||
use Leantime\Core\Controller\HtmxController; | ||
|
||
|
||
class FileUpload extends HtmxController | ||
{ | ||
protected static string $view = 'goalcanvas::components.canvas'; | ||
|
||
/** | ||
* Controller constructor | ||
* | ||
*/ | ||
public function init(): void | ||
{ | ||
|
||
} | ||
|
||
|
||
|
||
public function get($params): void | ||
{ | ||
|
||
} | ||
} |
Oops, something went wrong.