Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Progress Bar: Difference between revisions

From MoodleDocs
m (Update usage of update function)
m (Text replacement - "<code php>" to "<syntaxhighlight lang="php">")
Line 3: Line 3:


== Old Progress Bar ==
== Old Progress Bar ==
<code php>
<syntaxhighlight lang="php">
function print_progress($done, $total, $updatetime=5, $sleeptime=1, $donetext='')
function print_progress($done, $total, $updatetime=5, $sleeptime=1, $donetext='')
</code>
</code>
Line 9: Line 9:


Usage:
Usage:
<code php>
<syntaxhighlight lang="php">
set_time_limit(0);
set_time_limit(0);
$pb = new progressbar('bar', 500);
$pb = new progressbar('bar', 500);

Revision as of 13:30, 14 July 2021

Progress Bar Lib

There are two Progress Bar libs avaiable in Moodle, the old one and a OOP one.

Old Progress Bar

<syntaxhighlight lang="php"> function print_progress($done, $total, $updatetime=5, $sleeptime=1, $donetext=)

OOP Progress Bar

Usage: <syntaxhighlight lang="php"> set_time_limit(0); $pb = new progressbar('bar', 500); $pb->create(); $num_tasks = 200; // the number of tasks to be completed. for($cur_task = 0; $cur_task <= $num_tasks; $cur_task++) {

   for ($i=0; $i<100000; $i++)
   {
       ;;;
   }
   $pb->update($cur_task, $num_tasks, 'this is'. $cur_task . 'h');

} ?>


<?php $pt = new progressbar('zbar', 900); $pt->create(); $num_tasks = 200; // the number of tasks to be completed. for($cur_task = 0; $cur_task <= $num_tasks; $cur_task++) {

   for ($i=0; $i<100000; $i++)
   {
       ;;;
   }
   $pt->update($cur_task, $num_tasks, 'this is'. $cur_task . 'h');

}