Logo
This commit is contained in:
@@ -0,0 +1,170 @@
|
||||
<?php
|
||||
namespace App\Models;
|
||||
|
||||
use CodeIgniter\Model;
|
||||
|
||||
class projectData extends baseModel
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function projectList(){
|
||||
$data =[
|
||||
'myfit'=>[
|
||||
'name' => 'myFit A.I',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'wrenchboard'=>[
|
||||
'name' => 'WrenchBoard',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'coregrade'=>[
|
||||
'name' => 'CoreGrade',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'float'=>[
|
||||
'name' => 'Float (New)',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'legacyfloat'=>[
|
||||
'name' => 'Float (Legacy)',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'kintcare'=>[
|
||||
'name' => 'KintCare',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'merms'=>[
|
||||
'name' => 'Merms EMR',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'chiefsoft'=>[
|
||||
'name' => 'ChiefSoft',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
'jubabox'=>[
|
||||
'name' => 'JubaBox',
|
||||
'description' => 'This is the description of the project',
|
||||
'banner_image' => 'project_banner.jpg',
|
||||
'product_url' => 'www.chiefsoft.com',
|
||||
],
|
||||
];
|
||||
return $data;
|
||||
}
|
||||
private function projectListDetails(){
|
||||
$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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user