More projects
This commit is contained in:
@@ -42,6 +42,8 @@ class Projects extends BaseController
|
||||
|
||||
private function loginUser($username, $password, &$out)
|
||||
{
|
||||
$projData = new \App\Models\projectData();
|
||||
|
||||
$loginComplete = false;
|
||||
//entries sent
|
||||
if ($username == '' || $password == '') {
|
||||
@@ -64,9 +66,10 @@ class Projects extends BaseController
|
||||
'lastName'=> $out['lastname'],
|
||||
'firstName'=> $out['firstname'],
|
||||
'username'=> $out['username'],
|
||||
'project_list' => $this->projectList(),
|
||||
'project_list_detail' => $this->projectListDetails(),
|
||||
'project_list' => $projData->projectList(),
|
||||
'project_list_detail' => $projData->projectListDetails(),
|
||||
'devop_list' => $this->devOpList(),
|
||||
'project_document' => $projData->documentList()
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
@@ -66,6 +66,12 @@ class projectData extends baseModel
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'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;
|
||||
}
|
||||
@@ -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'=>[
|
||||
'LIVE'=>[
|
||||
'description'=>'This is the description of this',
|
||||
@@ -731,6 +755,12 @@ class projectData extends baseModel
|
||||
'document' => 'This is the link to the document',
|
||||
],
|
||||
],
|
||||
'theblackfaces'=>[
|
||||
[
|
||||
'name' => 'myFit A.I',
|
||||
'document' => 'This is the link to the document',
|
||||
],
|
||||
],
|
||||
'merms'=>[
|
||||
[
|
||||
'name' => 'myFit A.I',
|
||||
|
||||
Reference in New Issue
Block a user