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

Размер файла: 2.28Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. if($user['level'] < 6 || !isset($user)) { header('Location: /'); exit;}
  9. $locate = 'in_padmin';
  10. // if(isset($_POST['send']) && $_GET['act'] == 'send') {
  11. // $message = input($_POST['text']);
  12. // if(!empty($message)) { $text = substr($message, 0, 5000); } else { $err = 'Message is empty'; }
  13. // if(!isset($err)) {
  14. // $title = $lang->word('padmin_mail');
  15. // require_once(SYS.'/view/header.php');
  16. // $tpl->div('title', $lang->word('padmin_mail'));
  17. // $umq = $db->query("SELECT * FROM `users` WHERE `id` != '". $user['id'] ."'");
  18. // while($um = $umq->fetch()) {
  19. // 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) {
  20. // $db->query("INSERT INTO `mail_chat` SET `user_id` = '$user[id]', `who_id` = '". $um['id'] ."', `time_last_message` = '". time() ."'");
  21. // }
  22. // $db->query("INSERT INTO `mail_chat` SET `user_id` = '$user[id]', `who_id` = '". $um['id'] ."', `time_last_message` = '". time() ."'");
  23. // $db->query("INSERT INTO `mail` SET `user_id` = '". $user['id'] ."', `who_id` = '". $um['id'] ."', `text` = '$text', `time` = '". time() ."', `read` = '0'");
  24. // }
  25. // $tpl->div('menu', 'Succefuly sended!');
  26. // $tpl->div('block', img('admin.png') .'<a href="/padmin/">'. $lang->word('padmin') .'</a><br/>'. HICO .'<a href="/">'. $lang->word('home') .'</a>');
  27. // require_once(SYS.'/view/footer.php');
  28. // exit;
  29. // }
  30. // }
  31. $title = $lang->word('padmin_mail');
  32. require_once(SYS.'/view/header.php');
  33. $tpl->div('title', $lang->word('padmin_mail'));
  34. $tpl->div('error', 'Tempotary unvailable!');
  35. $tpl->div('menu', '<b>'.$lang->word('message') .'</b><br/>
  36. <form action="/padmin/mail/?act=send" method="post">
  37. <textarea name="text" rows="5" cols="26"></textarea><br/>
  38. <input name="send" type="submit" value="'. $lang->word('send').'"/>
  39. </form>');
  40. $tpl->div('block', img('admin.png') .'<a href="/padmin/">'. $lang->word('padmin') .'</a><br/>'. HICO .'<a href="/">'. $lang->word('home') .'</a>');
  41. require_once(SYS.'/view/footer.php');
  42. ?>