Bombardier Global 5000 Course Summary
0,
'manufacturer' => 1,
'segment' => 2,
'region' => 3,
'location' => 4,
'status' => 5
];
// Filter data for current aircraft
$locations = [];
foreach($bamtData as $row) {
if(slugify($row[$cols['manufacturer']] . ' ' . $row[$cols['aircraft']]) == $currentAircraft) {
$locations[] = $row[$cols['location']];
}
}
$locations = array_unique($locations);
function get_location_link($location) {
$base_url = 'https://cae2024.signatureweb.dev/fr/aviation-civile/emplacements';
$location_map = array(
"Abu Dhabi at Abu Dhabi Aviation Training Centre" => "cae-abu-dhabi-at-abu-dhabi-aviation-training-centre",
"Addis Ababa" => "cae-addis-ababa-ethiopian-aviation-academy",
"Amsterdam – Schiphol" => "cae-amsterdam-schiphol",
"Bangkok" => "cae-bangkok",
"Barcelona" => "cae-barcelone",
"Bengaluru" => "cae-bengaluru",
"Bogota" => "cae-bogota",
"Brussels" => "cae-bruxelles",
"Copenhagen" => "cae-copenhague",
"Dallas East" => "cae-dallas-est",
"Dallas West" => "cae-dallas-ouest",
"Dubai Al Garhoud - Emirates- Flight Training" => "cae-dubai-al-garhoud-emirates-cae-flight-training",
"Dubai Silicon Oasis" => "cae-dubai-silicon-oasis-emirates-cae-flight-training",
"Ho Chi Minh City" => "cae-ho-chi-minh-city",
"Hong kong" => "cae-hong-kong-au-centre-de-formation-hka",
"Kuala Lumpur" => "cae-kuala-lumpur",
"Las Vegas" => "cae-las-vegas",
"Lima" => "cae-lima",
"London Burgess Hill" => "cae-london-burgess-hill",
"London Gatwick" => "cae-london-gatwick-2",
"Madrid" => "cae-madrid",
"Mexico" => "cae-mexico",
"Minneapolis-St.Paul" => "cae-minneapolis-st-paul",
"Montreal" => "cae-montreal",
"New Delhi" => "cae-new-delhi",
"New Jersey Morristown" => "cae-new-jersey-morristown",
"Orlando" => "cae-orlando",
"Oslo" => "cae-oslo",
"Palma de Mallorca" => "cae-palma-de-mallorca-air-europa-training-centre",
"Perth" => "cae-perth",
"Philippines" => "cae-clark-philippine-academy-for-aviation-training",
"Phoenix" => "cae-phoenix",
"Prague" => "cae-prague",
"Reykjavík - Icelandair Flight Training Centre" => "cae-reykjavik-icelandair-flight-training-centre",
"Rome" => "cae-rome-alitalia-flight-training-centre",
"Rome - ITA Airways Flight Centre" => "cae-rome-alitalia-flight-training-centre",
"Santiago" => "cae-santiago",
"São Paulo Congonhas" => "cae-sao-paulo-congonhas",
"São Paulo Guarulhos" => "cae-sao-paulo-guarulhos",
"Savannah" => "cae-savannah",
"Seoul" => "cae-seoul",
"Sesto Calende" => "cae-sesto-calende",
"Shanghai" => "cae-shanghai",
"Singapore" => "cae-singapour-singapore-cae-flight-training",
"Singapore - Singapore Flight Training" => "cae-singapour-singapore-cae-flight-training",
"St-John" => "cae-st-john",
"Stockholm" => "cae-stockholm",
"Tokyo - JAL - Flight Training (JCFT)" => "cae-tokyo-jal-cae-flight-training-jcft",
"Toronto" => "cae-toronto",
"Vancouver" => "cae-vancouver",
'Sydney' => 'cae-sydney-flight-training-center'
);
if (array_key_exists($location, $location_map)) {
return $base_url ."/" . $location_map[$location];
} else {
return '';
}
}
?>