Просмотр файла modules/friends/requests.php

Размер файла: 2.34Kb
  1. <?php
  2.  
  3.  
  4. if (!isset($user))
  5. {
  6. header('Location: /');
  7. exit;
  8. }
  9.  
  10. if(isset($_GET['accept']) && $db->query("SELECT * FROM `friends` WHERE `id` = '". abs(intval($_GET['accept'])) ."' AND `friend_id` = '". $user['id'] ."'")->rowCount() != 0)
  11. {
  12. $db->query("UPDATE `friends` SET `active` = '1' WHERE `id` = '". abs(intval($_GET['accept'])) ."'");
  13. $db->query("INSERT INTO `notify` SET `user_id` = '". abs(intval($_GET['id'])) ."', `from_id` ='". $user['id'] ."', `type` = 'notify_verify_friend', `read` = '0', `time` = '". time() ."'");
  14. header('location: /friends/');
  15. exit;
  16. }
  17. elseif(isset($_GET['delete']) && $db->query("SELECT * FROM `friends` WHERE `id` = '". abs(intval($_GET['delete'])) ."' AND `friend_id` = '". $user['id'] ."'")->rowCount() != 0)
  18. {
  19. $db->query("DELETE FROM `friends` WHERE `id` = '". abs(intval($_GET['delete'])) ."' LIMIT 1");
  20. $db->query("INSERT INTO `notify` SET `user_id` = '". abs(intval($_GET['id'])) ."', `from_id` ='". $user['id'] ."', `type` = 'notify_unverify_friend', `read` = '0', `time` = '". time() ."'");
  21. header('location: /friends/');
  22. // print_r($db->errorInfo());
  23. exit;
  24. }
  25. $title = $lang->word('friends_requests');
  26. require_once(SYS .'/view/header.php');
  27.  
  28.  
  29. $friends_r = $db->query("SELECT * FROM `friends` WHERE `friend_id` = '".$user['id']."' AND `active` = '0'")->rowCount();
  30. $pages = new Paginator($friends_r, $ames);
  31.  
  32. if ($friends_r == 0)
  33. {
  34. echo '<div class="menu">'. $lang->word('no_friends_requests').'</div>';
  35. }
  36. else
  37. {
  38. $friends_q = $db->query("SELECT * FROM `friends` WHERE `friend_id` = '$user[id]' AND `active` = '0' LIMIT $start, $ames");
  39.  
  40. while ($friends = $friends_q->fetch())
  41. {
  42. echo '<div class="menu">
  43. '. nick($friends['user_id']) .'<br />
  44. [<a href="/friends/requests/'.$friends['user_id'].'?accept='. $friends['id'] .'">'. $lang->word('accept').'</a>][<a href="/friends/requests/'.$friends['user_id'].'?delete='. $friends['id'] .'">'. $lang->word('delete').'</a>]
  45. </div>';
  46. }
  47.  
  48. $pages->view('/friends/requests/?');
  49. }
  50.  
  51. echo '<div class="block">
  52. '. img('users.png') .' <a href="/friends">'. $lang->word('friends').'</a><br />
  53. '. img('nav.png') .' <a href="/user/panel">'. $lang->word('user_panel').'</a><br />
  54. '. HICO .' <a href="/">'. $lang->word('home').'</a><br />
  55. </div>';
  56.  
  57. require_once(SYS .'/view/footer.php');
  58. ?>