OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)

This commit is contained in:
wangruiguo
2026-09-03 18:49:20 +08:00
commit d647428529
3501 changed files with 1988906 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<?php
namespace Leantime\Domain\Tickets\Controllers;
use Leantime\Core\Controller\Controller;
use Leantime\Domain\Clients\Services\Clients as ClientService;
use Leantime\Domain\Tickets\Services\Tickets as TicketService;
class RoadmapAll extends Controller
{
private TicketService $ticketService;
private ClientService $clientService;
/**
* init - initialize private variables
*/
public function init(
ClientService $clientService,
TicketService $ticketService
): void {
$this->clientService = $clientService;
$this->ticketService = $ticketService;
}
/**
* get - handle get requests
*/
public function get($params)
{
$clientId = 0;
$currentClientName = '';
if (isset($_GET['client']) === true && $_GET['client'] != '') {
$clientId = (int) $_GET['client'];
$currentClientName = $this->ticketService->getClientNameById($clientId);
}
$allProjectMilestones = $this->ticketService->getAllMilestonesOverview(false, 'date', false, $clientId);
$allClients = $this->clientService->getUserClients(session('userdata.id'));
$this->tpl->assign('currentClientName', $currentClientName);
$this->tpl->assign('currentClient', $clientId);
$this->tpl->assign('milestones', $allProjectMilestones);
$this->tpl->assign('clients', $allClients);
return $this->tpl->display('tickets.roadmapAll');
}
/**
* post - handle post requests
*/
public function post($params)
{
$allProjectMilestones = $this->ticketService->getAllMilestonesOverview();
$this->tpl->assign('milestones', $allProjectMilestones);
return $this->tpl->display('tickets.roadmapAll');
}
}