ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
Status.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 enum Status: string
31 {
33  case INDETERMINATE = 'indeterminate';
34 
36  case DETERMINATE = 'determinate';
37 
39  case SUCCESS = 'success';
40 
42  case FAILURE = 'failure';
43 }
The progress of the process/task cannot be calculated (yet), but it has started processing.
Definition: Status.php:42
Status
This enum represents the status of a Progress Bar&#39;s underlying process/task, which can transition thr...
Definition: Status.php:30