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
 /**
  * Creates finish navigation panel.
  */
 protected function createFinishNavigation()
 {
     if (($template = $this->getFinishNavigationTemplate()) === null) {
         $template = new TWizardFinishNavigationTemplate($this);
     }
     $navigation = new TWizardNavigationContainer();
     $template->instantiateIn($navigation);
     return $navigation;
 }