Просмотр файла admin/anti/antispam.php

Размер файла: 2.1Kb
  1. <?php
  2. include '../../engine/includes/start.php';
  3. if (!$creator)
  4. Core::stop();
  5.  
  6. $set['title'] = 'Антиспам';
  7. include incDir.'head.php';
  8.  
  9. function __save($array = false)
  10. {
  11. if ($array)
  12. file_put_contents(H.'engine/files/data/antispam.db', serialize($array));
  13. return unserialize(file_get_contents(H . 'engine/files/data/antispam.db'));
  14. }
  15.  
  16. $antispam = file_exists(H . 'engine/files/data/antispam.db') ? __save() : array();
  17.  
  18. if (isset($_POST['add_save']))
  19. {
  20. $antispam = __save(array_merge($antispam, array($_POST['key'] => $_POST['value'])));
  21. }
  22.  
  23. elseif (isset($_POST['del']) && !empty($_POST['delete']))
  24. {
  25. foreach($_POST['delete'] as $key)
  26. {
  27. unset($antispam[$key]);
  28. }
  29. $antispam = __save($antispam);
  30. }
  31.  
  32. elseif (isset($_POST['save']))
  33. {
  34. $antispam = __save(array_combine(array_values($_POST['spam']['keys']), array_values($_POST['spam']['values'])));
  35. }
  36.  
  37. echo '<div class="post">Нагрузка от антиспама очень маленькая, потому что не хранит данные в бд и не использует регулярные выражения</div><form method="post">';
  38.  
  39. if (isset($_POST['add']))
  40. {
  41. echo '<input type="text" name="key" value=""/> заменить на <input type="text" name="value" value=""/> <input type="submit" name="add_save" value="+"/><br />';
  42. }
  43.  
  44. foreach($antispam as $key => $value)
  45. {
  46. echo '<input type="checkbox" name="delete[]" value="'.htmlspecialchars($key).'"/> <input type="text" name="spam[keys][]" value="'.htmlspecialchars($key).'"/> на <input type="text" name="spam[values][]" value="'.htmlspecialchars($value).'"/> <br />';
  47. }
  48.  
  49. ?>
  50. <input type="submit" name="del" value="Удалить"/> &nbsp; &nbsp; <input type="submit" name="save" value="Сохранить"/> &nbsp; &nbsp; <input type="submit" name="add" value="Добавить"/>
  51. </form>
  52. <a href='/admin/'><div class="menu_razd">Админка</div></a>
  53. <?php
  54. include incDir.'foot.php';