2017-06-29 08:54:37 +08:00
|
|
|
<?php
|
|
|
|
|
2017-07-04 14:05:37 +08:00
|
|
|
# TODO: Remove this ugly hackiness
|
|
|
|
if(defined('VMSEnums')) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
define('VMSEnums', true);
|
|
|
|
}
|
|
|
|
|
2017-06-29 08:54:37 +08:00
|
|
|
class VMSEnums
|
|
|
|
{
|
|
|
|
public static $sources
|
|
|
|
= [
|
2017-07-04 14:05:37 +08:00
|
|
|
'MANUAL' => 0,
|
|
|
|
'ACARS' => 1,
|
2017-06-29 08:54:37 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
public static $pirep_status
|
|
|
|
= [
|
|
|
|
'PENDING' => 0,
|
|
|
|
'ACCEPTED' => 1,
|
|
|
|
'REJECTED' => -1,
|
|
|
|
];
|
|
|
|
|
|
|
|
public static $fuel_types
|
|
|
|
= [
|
|
|
|
'100LL' => 0,
|
|
|
|
'JETA' => 1,
|
|
|
|
'MOGAS' => 2,
|
|
|
|
];
|
|
|
|
}
|