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

allowNavigationToStep() 보호된 메소드

protected allowNavigationToStep ( $index ) : boolean
리턴 boolean whether navigation to the specified step is allowed
    protected function allowNavigationToStep($index)
    {
        if ($this->getHistory()->contains($index)) {
            return $this->getWizardSteps()->itemAt($index)->getAllowReturn();
        } else {
            return true;
        }
    }
TWizard