TWizardFinishNavigationTemplate is the template used as default wizard finish navigation panel. It consists of three buttons, Previous, Complete and Cancel.
Since: 3.0
Author: Qiang Xue (qiang.xue@gmail.com)
Inheritance: extends TWizardNavigationTemplate
Exemple #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;
 }