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,68 @@
<?php
namespace Leantime\Domain\Help\Services;
use Leantime\Core\Events\DispatchesEvents;
use Leantime\Domain\Help\Contracts\OnboardingSteps;
use Leantime\Domain\Projects\Services\Projects;
use Leantime\Domain\Setting\Repositories\Setting;
class ProjectIntroStep implements OnboardingSteps
{
use DispatchesEvents;
public function __construct(
private Setting $settingsRepo,
private Projects $projectService
) {}
/**
* Get the title of the current project.
*
* @return string The title of the current project.
*/
public function getTitle(): string
{
return 'Name your project';
}
/**
* Get the action for the current request.
*
* @return string The action for the current request.
*/
public function getAction(): string
{
// TODO: Implement getAction() method.
return 'ProjectIntro';
}
/**
* Retrieves the template for the project introduction step.
*
* @return string The template name for the project introduction step.
*/
public function getTemplate(): string
{
return 'help.projectIntroStep';
}
/**
* Handle the given parameters.
*
* @param array $params The parameters passed to the handle method.
* @return bool Returns true on success.
*/
public function handle($params): bool
{
if (isset($params['projectname'])) {
$this->projectService->patch(session('currentProject'), ['name' => $_POST['projectname']]);
$this->projectService->changeCurrentSessionProject(session('currentProject'));
}
$this->settingsRepo->saveSetting('companysettings.completedOnboarding', true);
return true;
}
}