instantiateIn() public method

Instantiates the template.
public instantiateIn ( $parent )
Beispiel #1
0
 /**
  * Creates start navigation panel.
  */
 protected function createStartNavigation()
 {
     if (($template = $this->getStartNavigationTemplate()) === null) {
         $template = new TWizardStartNavigationTemplate($this);
     }
     $navigation = new TWizardNavigationContainer();
     $template->instantiateIn($navigation);
     return $navigation;
 }