HTML_Progress HTML_Progress(
object
$model, int
$orient, int
$min, int
$max, array
$errorPrefs)
Constructor Summary
Creates a natural horizontal progress bar that displays ten cells/units
with no border and no progress string.
The initial and minimum values are 0, and the maximum is 100.
Creates a natural progress bar with the specified orientation, which can be
either HTML_PROGRESS_BAR_HORIZONTAL or HTML_PROGRESS_BAR_VERTICAL
By default, no border and no progress string are painted.
The initial and minimum values are 0, and the maximum is 100.
Creates a natural horizontal progress bar with the specified minimum and
maximum. Sets the initial value of the progress bar to the specified
minimum, and the maximum that the progress bar can reach.
By default, no border and no progress string are painted.
Creates a natural horizontal progress bar with the specified orientation,
minimum and maximum. Sets the initial value of the progress bar to the
specified minimum, and the maximum that the progress bar can reach.
By default, no border and no progress string are painted.
Creates a natural horizontal progress that uses the specified model
to hold the progress bar's data.
By default, no border and no progress string are painted.
Returns the progress bar's current value, which is stored in the progress bar's data model. The value is always between the minimum and maximum values, inclusive.
By default, the value is initialized to be equal to the minimum value.
Runs the progress bar (both modes: indeterminate and determinate), and execute all actions defined in user callback identified by method setProgressHandler.
Sets the $_indeterminate property of the progress bar, which determines whether the progress bar is in determinate or indeterminate mode.
An indeterminate progress bar continuously displays animation indicating that an operation of unknown length is occuring. By default, this property is false.
Sets the current value of the progress string. By default, this string is null. If you have provided a custom progress string and want to revert to the built-in-behavior, set the string back to null.
The progress string is painted only if the isStringPainted() method returns true.