2024-09-12 16:01:04 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace kernel\controllers;
|
|
|
|
|
|
|
|
use DirectoryIterator;
|
|
|
|
use kernel\AdminController;
|
|
|
|
use kernel\helpers\Debug;
|
|
|
|
use kernel\models\Option;
|
|
|
|
use kernel\modules\user\service\UserService;
|
2024-09-13 13:54:58 +03:00
|
|
|
use kernel\Request;
|
2024-09-12 16:01:04 +03:00
|
|
|
use kernel\services\ModuleService;
|
|
|
|
|
|
|
|
class ModuleController extends AdminController
|
|
|
|
{
|
|
|
|
protected ModuleService $moduleService;
|
|
|
|
|
|
|
|
protected function init(): void
|
|
|
|
{
|
|
|
|
parent::init();
|
|
|
|
$this->cgView->viewPath = KERNEL_DIR . "/views/module/";
|
|
|
|
|
|
|
|
$this->moduleService = new ModuleService();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionIndex(): void
|
|
|
|
{
|
|
|
|
$admin_theme_paths = Option::where("key", "module_paths")->first();
|
|
|
|
$dirs = [];
|
|
|
|
if ($admin_theme_paths){
|
|
|
|
$path = json_decode($admin_theme_paths->value);
|
|
|
|
foreach ($path->paths as $p){
|
|
|
|
$dirs[] = getConst($p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$modules_info = [];
|
|
|
|
foreach ($dirs as $dir){
|
|
|
|
$i = 1;
|
|
|
|
foreach (new DirectoryIterator($dir) as $fileInfo) {
|
|
|
|
$info = [];
|
|
|
|
if($fileInfo->isDot()) continue;
|
|
|
|
$info['id'] = $i;
|
|
|
|
$modules_info[] = array_merge($info, $this->moduleService->getModuleInfo($fileInfo->getPathname()));
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->cgView->render("index.php", ['modules_info' => $modules_info, 'moduleService' => $this->moduleService]);
|
|
|
|
}
|
|
|
|
|
2024-09-13 13:54:58 +03:00
|
|
|
public function actionActivate(): void
|
|
|
|
{
|
|
|
|
$request = new Request();
|
|
|
|
$this->moduleService->setActiveModule($request->get("slug"));
|
|
|
|
|
2024-09-13 15:45:02 +03:00
|
|
|
$this->cgView->render("view.php", ['data' => $this->moduleService->getModuleInfo($this->moduleService->getModuleDir($request->get("slug")))]);
|
2024-09-13 13:54:58 +03:00
|
|
|
}
|
|
|
|
|
2024-09-12 16:01:04 +03:00
|
|
|
}
|