Exemple #1
0
 /**
  * sendRedirect
  *
  * @param Model $item
  * @return void
  */
 public function sendRedirect($item)
 {
     if (Yii::$app->request->isAjax) {
         $ajax = new Ajax();
         $ajax->sendRespond(true, 'Данные верны');
         Yii::$app->end();
     }
     $this->owner->redirect($this->getRedirectUrl($item));
 }