Просмотр файла modules/mail/write.php

Размер файла: 1.61Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.org.ua *
  7. **********************************/
  8. if(!isset($user) || !isset($_GET['user_id']) || $_GET['user_id'] == 0 || $user['id'] == $_GET['user_id'] || $db->query("SELECT * FROM `users` WHERE `id` = '". abs(intval($_GET['user_id'])) ."'")->rowCount() == 0) {
  9. header('location: /');
  10. exit;
  11. }
  12. if ($db->query("SELECT * FROM `mail_chat` WHERE (`user_id` = '$user[id]' OR `who_id` = '$user[id]') AND (`who_id` = '". abs(intval($_GET['user_id'])) ."' OR `user_id` = '". abs(intval($_GET['user_id'])) ."')")->rowCount() == 0) {
  13. $db->query("INSERT INTO `mail_chat` SET `user_id` = '$user[id]', `who_id` = '". abs(intval($_GET['user_id'])) ."', `time_last_message` = '". time() ."'");
  14. // print_r($db->errorInfo());
  15. header('Location: /mail/chat/'. abs(intval($_GET['user_id'])) .'/');
  16. exit;
  17. }
  18. $locate = 'in_cabinet';
  19. $title = $lang->word('w_mail');
  20. require_once(SYS.'/view/header.php');
  21. $tpl->div('title', $lang->word('w_mail'));
  22. $tpl->div('menu', '<b>'.$lang->word('reply') .'</b>:<br/>
  23. <form action="/mail/chat/'.abs(intval($_GET['user_id'])).'/?act=send" method="post">
  24. <textarea name="text" rows="5" cols="26">[b]'.tnick(abs(intval($_GET['user_id']))).'[/b], </textarea><br/>
  25. <input name="send" type="submit" value="'. $lang->word('send').'"/>
  26. </form>');
  27. $tpl->div('block', NAV .'<a href="/user/'.abs(intval($_GET['user_id'])).'/">'. $lang->word('back') .'</a><br/>'
  28. . HICO .'<a href="/">'. $lang->word('home') .'</a>');
  29. require_once(SYS.'/view/footer.php');
  30.  
  31. ?>