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

getHistory() protected method

protected getHistory ( ) : TStack
return Prado\Collections\TStack history containing step indexes that were navigated before
    protected function getHistory()
    {
        if (($history = $this->getControlState('History', null)) === null) {
            $history = new TStack();
            $this->setControlState('History', $history);
        }
        return $history;
    }
TWizard