Пример #1
0
 public function add($post)
 {
     $model = new Notifications();
     $model->setAttributes($post);
     $model->created_at = time();
     $model->is_read = 0;
     if ($model->save(FALSE)) {
         return TRUE;
     }
     return FALSE;
 }