TWizardFinishNavigationTemplate is the template used as default wizard finish navigation panel. It consists of three buttons, Previous, Complete and Cancel.
부터: 3.0
저자: Qiang Xue (qiang.xue@gmail.com)
상속: extends TWizardNavigationTemplate
예제 #1
0
파일: TWizard.php 프로젝트: pradosoft/prado
 /**
  * Creates finish navigation panel.
  */
 protected function createFinishNavigation()
 {
     if (($template = $this->getFinishNavigationTemplate()) === null) {
         $template = new TWizardFinishNavigationTemplate($this);
     }
     $navigation = new TWizardNavigationContainer();
     $template->instantiateIn($navigation);
     return $navigation;
 }