2017-12-20 10:19:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
|
2018-03-19 10:24:41 +08:00
|
|
|
use App\Interfaces\Enum;
|
|
|
|
|
2017-12-20 10:19:36 +08:00
|
|
|
/**
|
2018-04-02 09:18:12 +08:00
|
|
|
* Tied to the ACARS statuses/states.
|
|
|
|
* Corresponds to values from AIDX
|
2017-12-20 10:19:36 +08:00
|
|
|
* @package App\Models\Enums
|
|
|
|
*/
|
2018-03-08 22:51:36 +08:00
|
|
|
class PirepStatus extends Enum
|
2017-12-20 10:19:36 +08:00
|
|
|
{
|
2018-04-02 09:18:12 +08:00
|
|
|
public const INITIATED = 'INI';
|
|
|
|
public const SCHEDULED = 'SCH';
|
|
|
|
public const BOARDING = 'BST';
|
|
|
|
public const RDY_START = 'RDT';
|
2018-04-02 09:37:10 +08:00
|
|
|
public const DEPARTED = 'OFB'; // Off block
|
2018-04-02 09:18:12 +08:00
|
|
|
public const RDY_DEICE = 'DIR';
|
|
|
|
public const STRT_DEICE = 'DIC';
|
|
|
|
public const GRND_RTRN = 'GRT';
|
|
|
|
public const AIRBORNE = 'TKO';
|
|
|
|
public const DIVERTED = 'DV';
|
|
|
|
public const APPROACH = 'TEN';
|
|
|
|
public const ON_FINAL = 'FIN';
|
|
|
|
public const LANDED = 'LAN';
|
2018-04-02 09:37:10 +08:00
|
|
|
public const ARRIVED = 'ONB'; // On block
|
|
|
|
public const CANCELLED = 'DX';
|
2017-12-20 10:19:36 +08:00
|
|
|
|
|
|
|
protected static $labels = [
|
2018-04-02 10:44:04 +08:00
|
|
|
PirepStatus::INITIATED => 'system.pireps.status.initialized',
|
|
|
|
PirepStatus::SCHEDULED => 'system.pireps.status.scheduled',
|
|
|
|
PirepStatus::BOARDING => 'system.pireps.status.boarding',
|
|
|
|
PirepStatus::RDY_START => 'system.pireps.status.ready_start',
|
|
|
|
PirepStatus::DEPARTED => 'system.pireps.status.departed',
|
|
|
|
PirepStatus::RDY_DEICE => 'system.pireps.status.ready_deice',
|
|
|
|
PirepStatus::STRT_DEICE => 'system.pireps.status.deicing',
|
|
|
|
PirepStatus::GRND_RTRN => 'system.pireps.status.ground_ret',
|
|
|
|
PirepStatus::AIRBORNE => 'system.pireps.status.enroute',
|
|
|
|
PirepStatus::DIVERTED => 'system.pireps.status.diverted',
|
|
|
|
PirepStatus::APPROACH => 'system.pireps.status.approach',
|
|
|
|
PirepStatus::ON_FINAL => 'system.pireps.status.final_appr',
|
|
|
|
PirepStatus::LANDED => 'system.pireps.status.landed',
|
|
|
|
PirepStatus::ARRIVED => 'system.pireps.status.arrived',
|
|
|
|
PirepStatus::CANCELLED => 'system.pireps.status.cancelled',
|
2017-12-20 10:19:36 +08:00
|
|
|
];
|
|
|
|
}
|