Files
ChiefSoftNet2022/app/Models/projectData.php
T
DESKTOP-GBA0BK8\Admin d1e8ae9cd1 Logo
2023-04-01 14:13:00 -04:00

171 lines
4.1 KiB
PHP

<?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;
}
}