File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,6 @@ echo $this->QueueProgress->progressBar($queuedJob, 18);
377377The length refers to the amount of chars to display.
378378
379379Using Tools plugin 1.9.7+ you can even use HTML5 progress bar (easier to style using CSS).
380-
381380For this it is recommended to add the textual one from above as fallback, though:
382381``` php
383382$textProgressBar = $this->QueueProgress->progressBar($queuedJob, 18);
@@ -406,6 +405,13 @@ echo $this->QueueProgress->timeoutProgressBar($queuedJob, 18);
406405```
407406It shows the progress as current time between ` created ` and ` notbefore ` boundaries more visually.
408407
408+ Using Tools plugin 1.9.7+ you can even use HTML5 progress bar (easier to style using CSS).
409+ For this it is recommended to add the textual one from above as fallback, though:
410+ ``` php
411+ $textTimeoutProgressBar = $this->QueueProgress->timeoutProgressBar($queuedJob, 18);
412+ echo $this->QueueProgress->htmlTimeoutProgressBar($queuedJob, $textTimeoutProgressBar);
413+ ```
414+
409415### Logging
410416
411417By default errors are always logged, and with log enabled also the execution of a job.
You can’t perform that action at this time.
0 commit comments