phpvms/config/enums.php

32 lines
521 B
PHP
Raw Normal View History

2017-06-29 08:54:37 +08:00
<?php
# 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
= [
'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,
];
}