/**
  * Creates a new Notification model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Notification();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Ejemplo n.º 2
0
 public static function addNotify($text, $user_id)
 {
     $notification = new Notification();
     $notification->load(array("user_id" => $user_id, "title" => $text, "text" => $text, "status" => "new"), '');
     $notification->save();
 }