Esempio n. 1
0
 public function actionInvite()
 {
     if (Yii::$app->request->post()) {
         $model = new Invite();
         if ($model->invite()) {
             Yii::$app->session->setFlash('success', 'Invitation sent successfully');
             $this->redirect('searchdoc');
         }
     }
 }