Просмотр файла modules/news/add_comment.php

Размер файла: 1.15Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. $locate = 'in_news';
  9. if(!isset($user)) { go('/'); }
  10. if(!empty($_GET['news_id'])) {
  11. if(isset($_POST['create']) && $_GET['act'] == 'create') {
  12. $comments = new Comments('news', $_GET['news_id']);
  13. $comments->add($_POST['text']);
  14. }
  15. $title = $lang->word('add_comment');
  16. require_once(SYS.'/view/header.php');
  17. $tpl->div('title', $lang->word('add_comment'));
  18. echo '<form action="/news/add_comment/?act=create&amp;news_id='.abs(intval($_GET['news_id'])) .'" method="post">
  19. <div class="menu">
  20. <b>'. $lang->word('message') .'</b>:<br/>
  21. <textarea name="text" rows="5" cols="26">'.(isset($_GET['reply_to']) ? '[b]'.tnick($_GET['reply_to']).'[/b], ' : NULL).'</textarea><br/>
  22. <input name="create" type="submit" value="'. $lang->word('create') .'" /><br/>
  23. </div>
  24. </form>';
  25. $tpl->div('block', NAV .'<a href="/news/">'. $lang->word('news') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
  26. require_once(SYS.'/view/footer.php');
  27. } else { go('/'); }
  28. ?>