Prado\Web\UI\WebControls\TWizardNavigationButtonStyle::setButtonText PHP 메소드

setButtonText() 공개 메소드

public setButtonText ( $value )
    public function setButtonText($value)
    {
        $this->_buttonText = $value;
    }

Usage Example

예제 #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;
 }