yii\base\Widget::run PHP 메소드

run() 공개 메소드

Executes the widget.
public run ( ) : string
리턴 string the result of widget execution to be outputted.
    public function run()
    {
    }

Usage Example

 public function run()
 {
     if ($this->_pjax) {
         $this->_pjax->end();
     }
     parent::run();
 }
All Usage Examples Of yii\base\Widget::run