| 1234567891011121314151617 |
- <?php
- namespace MGModule\DNSManager2\models\custom\task;
- use MGModule\DNSManager2\mgLibs\custom;
- class TaskStatusEnum extends custom\BasicEnumAbstract
- {
- const START = 'start';
- const IN_PROGRESS = 'in_progress';
- const PENDING = 'pending';
- const ABORTED = 'aborted';
- const CANCELED = 'canceled';
- const FINISHED = 'finished';
- const ERROR = 'error';
- const WAITING = 'waiting';
- }
|