More projects
This commit is contained in:
@@ -42,6 +42,8 @@ class Projects extends BaseController
|
|||||||
|
|
||||||
private function loginUser($username, $password, &$out)
|
private function loginUser($username, $password, &$out)
|
||||||
{
|
{
|
||||||
|
$projData = new \App\Models\projectData();
|
||||||
|
|
||||||
$loginComplete = false;
|
$loginComplete = false;
|
||||||
//entries sent
|
//entries sent
|
||||||
if ($username == '' || $password == '') {
|
if ($username == '' || $password == '') {
|
||||||
@@ -64,9 +66,10 @@ class Projects extends BaseController
|
|||||||
'lastName'=> $out['lastname'],
|
'lastName'=> $out['lastname'],
|
||||||
'firstName'=> $out['firstname'],
|
'firstName'=> $out['firstname'],
|
||||||
'username'=> $out['username'],
|
'username'=> $out['username'],
|
||||||
'project_list' => $this->projectList(),
|
'project_list' => $projData->projectList(),
|
||||||
'project_list_detail' => $this->projectListDetails(),
|
'project_list_detail' => $projData->projectListDetails(),
|
||||||
'devop_list' => $this->devOpList(),
|
'devop_list' => $this->devOpList(),
|
||||||
|
'project_document' => $projData->documentList()
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -66,6 +66,12 @@ class projectData extends baseModel
|
|||||||
'banner_image' => 'project_banner.jpg',
|
'banner_image' => 'project_banner.jpg',
|
||||||
'product_url' => 'www.chiefsoft.com',
|
'product_url' => 'www.chiefsoft.com',
|
||||||
],
|
],
|
||||||
|
'theblackfaces'=>[
|
||||||
|
'name' => 'Black Faces',
|
||||||
|
'description' => 'African History Short Story Blog',
|
||||||
|
'banner_image' => 'project_banner.jpg',
|
||||||
|
'product_url' => 'https://www.theblackfaces.com',
|
||||||
|
],
|
||||||
];
|
];
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
@@ -580,6 +586,24 @@ class projectData extends baseModel
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
'theblackfaces'=>[
|
||||||
|
|
||||||
|
'LIVE'=>[
|
||||||
|
'description'=>'This is the description of this',
|
||||||
|
'contents'=>[
|
||||||
|
[
|
||||||
|
'name' => 'Blackfaces Blog Website',
|
||||||
|
'description' => 'This is the description of the item',
|
||||||
|
'banner_image' => 'project_banner.jpg',
|
||||||
|
'url' => 'https://www.theblackfaces.com',
|
||||||
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
||||||
|
'status' => 'Pending'
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
]
|
||||||
|
]
|
||||||
|
],
|
||||||
'legacyfloat'=>[
|
'legacyfloat'=>[
|
||||||
'LIVE'=>[
|
'LIVE'=>[
|
||||||
'description'=>'This is the description of this',
|
'description'=>'This is the description of this',
|
||||||
@@ -731,6 +755,12 @@ class projectData extends baseModel
|
|||||||
'document' => 'This is the link to the document',
|
'document' => 'This is the link to the document',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
'theblackfaces'=>[
|
||||||
|
[
|
||||||
|
'name' => 'myFit A.I',
|
||||||
|
'document' => 'This is the link to the document',
|
||||||
|
],
|
||||||
|
],
|
||||||
'merms'=>[
|
'merms'=>[
|
||||||
[
|
[
|
||||||
'name' => 'myFit A.I',
|
'name' => 'myFit A.I',
|
||||||
|
|||||||
Reference in New Issue
Block a user