Prado\Web\UI\WebControls\TWizard::saveState PHP Method

saveState() public method

This method is invoked by the framework when the control state is being saved.
public saveState ( )
    public function saveState()
    {
        $index = $this->getActiveStepIndex();
        $history = $this->getHistory();
        if (!$history->getCount() || $history->peek() !== $index) {
            $history->push($index);
        }
    }
TWizard