getMinimum Manual
returns the progress bar's minimum value
Synopsis
integer getMinimum()
Description
The getMinimum() method is used to retrieve the
minimal value in the mathematical model of the progress bar.
The default value is set to zero.
Example
<?php
require_once ('HTML/Progress.php');
$bar = new HTML_Progress();
// direct way
print('minimum = ' . $bar->getMinimum());
echo '<br/>';
// another way
$dm =& $bar->getDM();
print('minimum = ' . $dm->getMinimum());
?>
See Also
setMinimum Manual