Exemplo n.º 1
0
 public function add($id_from, $id_to, $csrf)
 {
     $member = $this->getMember($id_from, $id_to, $csrf);
     $contact = UsersBook::create();
     $contact->id_user_from = $id_from;
     $contact->id_user_to = $id_to;
     $contact->status = 1;
     $contact->save();
     Users::addFriend($id_from, $id_to);
     Router::redirect('book.index', ['id' => $member['id'], 'name' => $member['nickname']]);
 }