Просмотр файла modules/share/edit_folder.php

Размер файла: 2.07Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.ru *
  7. **********************************/
  8. $locate = 'in_share';
  9. if($user['level'] < '6' || !isset($_GET['cat_id'])) { go('/'); }
  10. if($db->query("SELECT * FROM `share_c` WHERE `id` = '". abs(intval($_GET['cat_id'])) ."'")->rowCount() == 0) {
  11. go('/share/');
  12. }
  13. $edit_folder = $db->query("SELECT * FROM `share_c` WHERE `id` = '". abs(intval($_GET['cat_id'])) ."'")->fetch();
  14. if(isset($_POST['edit']) && $_GET['act'] == 'edit') {
  15. $name = substr(input($_POST['name']), 0, 55);
  16. $desc = substr(input($_POST['desc']), 0, 160);
  17. $who_upload = substr(abs(intval($_POST['who_upload'])), 0, 1);
  18. $db->query("UPDATE `share_c` SET `name` = '". $name ."', `who_upload` = '$who_upload', `desc` = '$desc' WHERE `id` = '". abs(intval($_GET['cat_id'])) ."'");
  19. go('/share/folder/'. abs(intval($_GET['cat_id'])) .'/');
  20. // print_r($db->errorInfo());
  21. }
  22. $title = $lang->word('edit');
  23. require_once(SYS.'/view/header.php');
  24. $tpl->div('title', $lang->word('edit'));
  25. echo '<form action="/share/edit_folder/'. abs(intval($_GET['cat_id'])) .'/?act=edit" method="post">
  26. <div class="menu">
  27. <b>'. $lang->word('name') .'</b>:<br/>
  28. <input typr="text" name="name" value="'. $edit_folder['name'] .'" /><br/>
  29. <b>'. $lang->word('desc') .'</b>:<br/>
  30. <input typr="text" name="desc" value="'. $edit_folder['desc'] .'" /><br/>
  31. <b>'.$lang->word('who_upload').'</b>:<br/>
  32. <select name="who_upload">
  33. <option value="1" '.($edit_folder['who_upload'] == 1 ? 'selected="selected"' : NULL).'>'.$lang->word('administration').'</option>
  34. <option value="2" '.($edit_folder['who_upload'] == 2 ? 'selected="selected"' : NULL).'>'.$lang->word('alls').' '.$lang->word('regs').'</option>
  35. </select><br/>
  36. <input name="edit" type="submit" value="'. $lang->word('edit') .'" /><br/>
  37. </div>
  38. </form>';
  39. $tpl->div('block', NAV .'<a href="/share/">'. $lang->word('share') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
  40. require_once(SYS.'/view/footer.php');
  41. ?>