* [task#126382,doing,1h] Add the tutorial of waterfallProjectManage.

This commit is contained in:
xieqiyu
2024-09-04 17:31:41 +08:00
committed by 王于听
parent 0886fbce1d
commit d585a8859b
4 changed files with 166 additions and 1 deletions
+12
View File
@@ -176,6 +176,18 @@ class tutorialModel extends model
$project->storyType = 'story,requirement,epic';
$project->charter = 0;
list($guide, $guideTask, $guideStepIndex) = explode('-', $_SERVER['HTTP_X_ZIN_TUTORIAL']);
if($guide == 'scrumProjectManage')
{
$project->name = 'Scrum Project';
$project->model = 'scrum';
}
if($guide == 'waterfallProjectManage')
{
$project->name = 'Waterfall Project';
$project->model = 'waterfall';
}
return $project;
}