instantiateIn() 공개 메소드

Instantiates the template.
public instantiateIn ( $parent )
예제 #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;
 }