You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
795 B

  1. <?php
  2. /* @authorcode codestrings
  3. * @copyright Leyun internet Technology(Shanghai)Co.,Ltd
  4. * @license http://www.dzzoffice.com/licenses/license.txt
  5. * @package DzzOffice
  6. * @link http://www.dzzoffice.com
  7. * @author zyx(zyx@dzz.cc)
  8. */
  9. if (!defined('IN_DZZ') || !defined('IN_ADMIN')) {
  10. exit('Access Denied');
  11. }
  12. //卸载网盘程序;
  13. $sql = <<<EOF
  14. DROP TABLE IF EXISTS `dzz_resources_cat`;
  15. DELETE FROM `dzz_setting` where `skey` = 'explorer_usermemoryOn';
  16. DELETE FROM `dzz_setting` where `skey` = 'explorer_mermoryusersetting';
  17. DELETE FROM `dzz_setting` where `skey` = 'explorer_memoryorgusers';
  18. DELETE FROM `dzz_setting` where `skey` = 'explorer_organizationOn';
  19. DELETE FROM `dzz_setting` where `skey` = 'explorer_groupOn';
  20. EOF;
  21. runquery($sql);
  22. $finish = true;