yii\base\Widget::run PHP Méthode

run() public méthode

Executes the widget.
public run ( ) : string
Résultat 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