/**
  * Creates a new Notifications model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Notifications();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Пример #2
0
 public function makeNotification($msg, $link, $userId, $img)
 {
     $notify = new Notifications();
     $notify->messages = $msg;
     $notify->link = $link;
     $notify->status = 0;
     $notify->user_id = $userId;
     $notify->image = $img;
     if ($notify->save()) {
         return $notify->id;
     }
     return false;
 }