TWizardStepNavigationTemplate is the template used as default wizard step navigation panel. It consists of three buttons, Previous, Next and Cancel.
С версии: 3.0
Автор: Qiang Xue (qiang.xue@gmail.com)
Наследование: extends TWizardNavigationTemplate
Пример #1
0
 /**
  * Creates step navigation panel.
  */
 protected function createStepNavigation()
 {
     if (($template = $this->getStepNavigationTemplate()) === null) {
         $template = new TWizardStepNavigationTemplate($this);
     }
     $navigation = new TWizardNavigationContainer();
     $template->instantiateIn($navigation);
     return $navigation;
 }