ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Status.php
Go to the documentation of this file.
1 <?php
2 
18 declare(strict_types=1);
19 
21 
29 enum Status: string
30 {
32  case INDETERMINATE = 'indeterminate';
33 
35  case DETERMINATE = 'determinate';
36 
38  case SUCCESS = 'success';
39 
41  case FAILURE = 'failure';
42 }
The progress of the process/task cannot be calculated (yet), but it has started processing.
Definition: Status.php:41
Status
This enum represents the status of a Progress Bar&#39;s underlying process/task, which can transition thr...
Definition: Status.php:29