Prado\Web\UI\WebControls\TWizard::allowNavigationToPreviousStep PHP 메소드

allowNavigationToPreviousStep() 보호된 메소드

protected allowNavigationToPreviousStep ( ) : boolean
리턴 boolean whether navigation to the previous step is allowed
    protected function allowNavigationToPreviousStep()
    {
        if (($index = $this->getPreviousStepIndex(false)) !== -1) {
            return $this->getWizardSteps()->itemAt($index)->getAllowReturn();
        } else {
            return false;
        }
    }
TWizard