Prado\Web\UI\WebControls\TWizard::getWizardSteps PHP Метод

getWizardSteps() публичный Метод

public getWizardSteps ( ) : TWizardStepCollection
Результат TWizardStepCollection collection of wizard steps
    public function getWizardSteps()
    {
        if ($this->_wizardSteps === null) {
            $this->_wizardSteps = new TWizardStepCollection($this);
        }
        return $this->_wizardSteps;
    }
TWizard