PHP Class Prado\Web\UI\WebControls\TWizardStepCollection

TWizardStepCollection represents the collection of wizard steps owned by a {@link TWizard}.
Since: 3.0
Author: Qiang Xue ([email protected])
Inheritance: extends Prado\Collections\TList
Mostrar archivo Open project: pradosoft/prado

Public Methods

Method Description
__construct ( TWizard $wizard ) Constructor.
insertAt ( $index, $item ) Inserts an item at the specified position.
removeAt ( $index ) : mixed Removes an item at the specified position.

Method Details

__construct() public method

Constructor.
public __construct ( TWizard $wizard )
$wizard TWizard

insertAt() public method

This method overrides the parent implementation by checking if the item being added is a {@link TWizardStep}.
public insertAt ( $index, $item )

removeAt() public method

Removes an item at the specified position.
public removeAt ( $index ) : mixed
return mixed the removed item.