670 lines
29 KiB
PHP
670 lines
29 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;
|
|
}
|
|
public function projectListDetails(){
|
|
$data =[
|
|
'chiefsoft'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
]
|
|
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
]
|
|
]
|
|
],
|
|
'myfit'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'wrenchboard'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'coregrade'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'float'=>[
|
|
'DEV'=>[
|
|
'description'=>'Development Platforms for the new Float Mobility',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'Main Website',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-www.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5501/',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'Contents Management Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-cms.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5503/',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'Back Office Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-bko.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5505/',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'Float Users Interface Web',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-usr.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5502/',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'Business & Fleet WebSite',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-flt.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5504/',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'Blog Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-blg.dev.chiefsoft.net',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'API Gates (Internal Gates)',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://float-gat.dev.chiefsoft.net',
|
|
'location'=> 'http://10.0.0.32:5509/',
|
|
'status' => 'Pending'
|
|
],
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'Live Platforms for the new Float Mobility',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'Main Website',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://www.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5501/',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'Contents Management Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://cms.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5503/',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'Back Office Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://bko.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5505/',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'Float Users Interface Web',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://users.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5502/',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'Business & Fleet WebSite',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://fleet.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5504/',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'Blog Systems',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://blog.dev.chiefsoft.net',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Design'
|
|
],
|
|
[
|
|
'name' => 'API Gates (Internal Gates)',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://gate.dev.chiefsoft.net',
|
|
'location'=> 'http://TO-BE-DETERMINE:5509/',
|
|
'status' => 'Design'
|
|
],
|
|
]
|
|
]
|
|
],
|
|
'jubabox'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'merms'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'kintcare'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
'legacyfloat'=>[
|
|
'DEV'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
],
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
[
|
|
'name' => 'name of the item',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'www.url.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Pending'
|
|
],
|
|
|
|
]
|
|
]
|
|
],
|
|
];
|
|
return $data;
|
|
}
|
|
private function devOpList(){
|
|
$data =[
|
|
'chiefsoft'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'myfit'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'wrenchboard'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'coregrade'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'float'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
];
|
|
return $data;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|