772 lines
33 KiB
PHP
772 lines
33 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' => 'Float Current Project to be Redesigned',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'product_url' => 'https://www.float.sg',
|
|
],
|
|
'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'=>'WrenchBoard Development (Host File Needed for some pages)',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'Back Office',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'dev-backoffice.wrenchboard.local',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Ready'
|
|
],
|
|
[
|
|
'name' => 'Users DashBoard',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://dev-dashboard.wrenchboard.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Ready'
|
|
],
|
|
[
|
|
'name' => 'Main Website',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://dev-www.wrenchboard.com',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Ready'
|
|
],
|
|
[
|
|
'name' => 'New Users DashBoard',
|
|
'description' => 'This is the description of the item',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://dev-users.wrenchboard.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'=>[
|
|
'LIVE'=>[
|
|
'description'=>'This is the description of this',
|
|
'contents'=>[
|
|
[
|
|
'name' => 'Product Wesbite',
|
|
'description' => 'Float Current Website',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://www.float.sg',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Live'
|
|
],
|
|
[
|
|
'name' => 'Float Blog',
|
|
'description' => 'Float Blog WordPress',
|
|
'banner_image' => 'project_banner.jpg',
|
|
'url' => 'https://blog.float.sg',
|
|
'location'=> '0.0.0.0, 0.0.0.0, 0.0.0.0',
|
|
'status' => 'Live'
|
|
],
|
|
|
|
]
|
|
],
|
|
'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'
|
|
],
|
|
|
|
|
|
]
|
|
]
|
|
],
|
|
];
|
|
return $data;
|
|
}
|
|
public function devOpList(){
|
|
$data =[
|
|
'chiefsoft'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'myfit'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'wrenchboard'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'coregrade'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
'float'=>[
|
|
'DEV'=>[
|
|
|
|
],
|
|
'LIVE'=>[
|
|
|
|
]
|
|
],
|
|
];
|
|
return $data;
|
|
}
|
|
|
|
|
|
public function documentList(){
|
|
$data =[
|
|
'myfit'=>[
|
|
[
|
|
'name' => 'Release Docs',
|
|
'document' => 'https://docs.google.com/document/d/1uybH0o-M_f0PintViYJUlenOcSllWxmwU4rj1lylZuI/edit',
|
|
],
|
|
[
|
|
'name' => 'DevOps Jenkins',
|
|
'document' => 'https://docs.google.com/document/d/1TJN-rfuhtoEkkDpWeQh7CcC9G99dx2yUs_xWXVWYlvE/edit',
|
|
],
|
|
],
|
|
'wrenchboard'=>[
|
|
[
|
|
'name' => 'Release Plans',
|
|
'document' => 'https://docs.google.com/document/d/1n-S0EAyfsc6ylRCTeRB1hIQODvNfOibKpiuB3WwNWao/edit',
|
|
],
|
|
[
|
|
'name' => ' WrenchBoard Transfer',
|
|
'document' => 'https://docs.google.com/document/d/1c-PRXW2d53m9aOAS-ZjTOs8z6xX1LcUNHi3nvowT9YE/edit',
|
|
],
|
|
],
|
|
'coregrade'=>[
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'float'=>[
|
|
[
|
|
'name' => 'Port Defination',
|
|
'document' => 'https://docs.google.com/document/d/1rOAEcv8Lzg_ZdUhhiCUZJIPPAvUvTlc9vzvJMQOsUfU/edit',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'legacyfloat'=>[
|
|
[
|
|
'name' => 'Migration Feedback',
|
|
'document' => 'https://docs.google.com/document/d/1z-tLRt6Oz9mWMFBVnDK1lrBJg9AjrH-j4TgZLSsRcFw/edit',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'kintcare'=>[
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'merms'=>[
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'chiefsoft'=>[
|
|
[
|
|
'name' => 'Jenkis Release',
|
|
'document' => 'https://docs.google.com/document/d/1II_qZqPhq_ShL7iM2ADBZyWwiQ8YYHQRrLpVnf2rMZY/edit',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
'jubabox'=>[
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
[
|
|
'name' => 'myFit A.I',
|
|
'document' => 'This is the link to the document',
|
|
],
|
|
],
|
|
];
|
|
return $data;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|