Просмотр файла admin/modules/settings.php

Размер файла: 2.29Kb
  1. <?php
  2. include '../../engine/includes/start.php';
  3. if (!$creator)
  4. Core::stop();
  5.  
  6. $set['title'] = 'Параметры установки модулей';
  7. include incDir.'head.php';
  8. $set_mod = parse_ini_file(H . 'engine/files/data/modules.ini');
  9.  
  10. if (isset($_POST['save']))
  11. {
  12. $set_mod['from_others'] = isset($_POST['from_others']);
  13. $set_mod['req_un_file'] = isset($_POST['req_un_file']);
  14. $set_mod['check_author'] = isset($_POST['check_author']);
  15. $set_mod['ftp_host'] = Core::form('ftp_host');
  16. $set_mod['ftp_user'] = Core::form('ftp_user');
  17. $set_mod['ftp_pass'] = Core::form('ftp_pass');
  18. Core::save_settings($set_mod, 'engine/files/data/modules.ini');
  19. Core::msg_show('Сохранено');
  20. }
  21.  
  22. ?>
  23. <form method = "post">
  24. <label><input type='checkbox' <?=(!empty($set_mod['from_others']) ? 'checked="checked"':null)?> name='from_others' value='1' /> Устанавливать модули не из официального сайта</label><br />
  25. <label><input type='checkbox' <?=(!empty($set_mod['req_un_file']) ? 'checked="checked"':null)?> name='req_un_file' value='1' /> Файл удаления (uninstall.php) обязателен для модулей</label><br />
  26. <label><input type='checkbox' <?=(!empty($set_mod['check_author']) ? 'checked="checked"':null)?> name='check_author' value='1' /> Проверять авторов модулей через Banbase.ru и Gix.su</label><br />
  27. <div class="menu_razd">ftp данные</div>
  28. Хост:<br />
  29. <input type="text" name="ftp_host" value="<?=(!empty($set_mod['ftp_host']) ? $set_mod['ftp_host'] : $_SERVER['SERVER_NAME'])?>"/><br />
  30. Пользователь:<br />
  31. <input type="text" name="ftp_user" value="<?=(!empty($set_mod['ftp_user']) ? $set_mod['ftp_user'] : $_SERVER['SERVER_NAME'])?>"/><br />
  32. Пароль:<br />
  33. <input type="text" name="ftp_pass" value="<?=(!empty($set_mod['ftp_pass']) ? $set_mod['ftp_pass'] :null)?>"/><br />
  34. <input value = "Изменить" name="save" type="submit" />
  35. </form>
  36. <a href="/admin/?act=modules"><div class="link">Модули</div></a>
  37. <a href='/admin/'><div class="link">Админка</div></a>
  38. <?php
  39. include incDir.'foot.php';