New project page

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-01 11:29:23 -04:00
parent 9dd0e95a56
commit 9f240a3c75
2208 changed files with 49083 additions and 2 deletions
+95 -1
View File
@@ -63,10 +63,104 @@ class Projects extends BaseController
'bko_session' => rand(10000,9999999).'-hhdsdyuyu487484398439843jjhjfhjfdhjfdhjfdhj89498498598jfjfhjf',
'lastName'=> $out['lastname'],
'firstName'=> $out['firstname'],
'username'=> $out['username']
'username'=> $out['username'],
'project_list' => $this->projectList(),
'devop_list' => $this->devOpList(),
]);
}
return $loginComplete;
}
private function projectList(){
$data =[
'chiefsoft'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'myfit'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'wrenchboard'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'coregrade'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'float'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
];
return $data;
}
private function devOpList(){
$data =[
'chiefsoft'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'myfit'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'wrenchboard'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'coregrade'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
'float'=>[
'DEV'=>[
],
'LIVE'=>[
]
],
];
return $data;
}
}