filelist.php
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?php
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6.     描述:文件管理
  7. */
  8. require_once("../../class/template_class.php");
  9. require_once("../../class/mysql_class.php");
  10. require_once("../../config.php");
  11. require_once("../../config/baseCheckCode.php");
  12. require_once("../../function/checkModuleSession.php");
  13. isLogin("../../$sessionPath/");
  14. require_once("shortcut.list");
  15. define('IN_SELF', 'index');
  16. require_once ("./global.php");
  17. //session_start();
  18. require_once ($T_language);
  19. //if($_SESSION[$T_session]){
  20. require_once ($T_function);
  21. $path = urldecode(empty($_GET['path'])?"root":$_GET['path']);
  22. if($path = checkpath($path)){
  23. $currentpath = urlencode($path);
  24. if(strtolower(truepath($path))==strtolower(truepath($T_Recycled,2))){
  25. $ifdelete = 3;
  26. }else{
  27. $ifdelete = 0;
  28. }
  29. require_once($T_setup); 
  30. }else{
  31. //echo $T_lang['error'][0];
  32. exit;
  33. }
  34. ?>