setButtonText() 공개 메소드

public setButtonText ( $value )
예제 #1
0
파일: TWizard.php 프로젝트: pradosoft/prado
 /**
  * @return TWizardNavigationButtonStyle the style for the cancel button
  */
 public function getCancelButtonStyle()
 {
     if (($style = $this->getViewState('CancelButtonStyle', null)) === null) {
         $style = new TWizardNavigationButtonStyle();
         $style->setButtonText('Cancel');
         $this->setViewState('CancelButtonStyle', $style, null);
     }
     return $style;
 }