Prado\Web\UI\WebControls\TWizard::getWizardSteps PHP Méthode

getWizardSteps() public méthode

public getWizardSteps ( ) : TWizardStepCollection
Résultat TWizardStepCollection collection of wizard steps
    public function getWizardSteps()
    {
        if ($this->_wizardSteps === null) {
            $this->_wizardSteps = new TWizardStepCollection($this);
        }
        return $this->_wizardSteps;
    }
TWizard