ecmseditor.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../data/dbcache/class.php");
  7. require "../".LoadLang("pub/fun.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. $enews=$_POST['enews'];
  12. if(empty($enews))
  13. {
  14. $enews=$_GET['enews'];
  15. }
  16. //验证用户
  17. $lur=is_login();
  18. $logininid=$lur['userid'];
  19. $loginin=$lur['username'];
  20. $loginrnd=$lur['rnd'];
  21. $loginlevel=$lur['groupid'];
  22. $loginadminstyleid=$lur['adminstyleid'];
  23. hCheckEcmsRHash();
  24. $addgethtmlpath="../";
  25. if($public_r['phpmode'])
  26. {
  27. include("../../class/ftp.php");
  28. $incftp=1;
  29. }
  30. require("editorfun.php");
  31. include('eshoweditor.php');
  32. $doetran=1;
  33. if($enews=="TranFile")//上传文件
  34. {
  35. $file=$_FILES['file']['tmp_name'];
  36. $file_name=$_FILES['file']['name'];
  37. $file_type=$_FILES['file']['type'];
  38. $file_size=$_FILES['file']['size'];
  39. $tranurl=$_POST['tranurl'];
  40. $no=$_POST['no'];
  41. $classid=$_POST['classid'];
  42. $type=$_POST['type'];
  43. TranFile($file,$file_name,$file_type,$file_size,$tranurl,$no,$classid,$type,$_POST,$logininid,$loginin);
  44. }
  45. elseif($enews=="SaveMoreImg")//批量上传图片
  46. {
  47. $file=$_FILES['file']['tmp_name'];
  48. $file_name=$_FILES['file']['name'];
  49. $file_type=$_FILES['file']['type'];
  50. $file_size=$_FILES['file']['size'];
  51. eTranMorePic($file,$file_name,$file_type,$file_size,$_POST,$logininid,$loginin);
  52. }
  53. else
  54. {
  55. printerror("ErrorUrl","history.go(-1)");
  56. }
  57. db_close();
  58. $empire=null;
  59. ?>