ecmseditorpage.php 914 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. require('../../../class/connect.php');
  3. $editor=3;
  4. //接收参数
  5. function EcmsEditor_PageGetVar($add){
  6. $r['showmod']=(int)$add['showmod'];
  7. $r['type']=(int)$add['type'];
  8. $r['classid']=(int)$add['classid'];
  9. $r['filepass']=(int)$add['filepass'];
  10. $r['infoid']=(int)$add['infoid'];
  11. $r['InstanceName']=ehtmlspecialchars($add['InstanceName']);
  12. $r['InstanceId']=intval(str_replace('cke_','',$add['InstanceId']));
  13. return $r;
  14. }
  15. $ecms_topager=array();
  16. $doecmspage=ehtmlspecialchars($_GET['doecmspage']);
  17. $ecms_topager=EcmsEditor_PageGetVar($_GET);
  18. $pagefile='';
  19. if($doecmspage=='TranImg')//上传图片
  20. {
  21. $pagefile='TranImg.php';
  22. }
  23. elseif($doecmspage=='TranFile')//上传附件
  24. {
  25. $pagefile='TranFile.php';
  26. }
  27. elseif($doecmspage=='TranFlash')//上传FLASH
  28. {
  29. $pagefile='TranFlash.php';
  30. }
  31. elseif($doecmspage=='TranMedia')//上传视频
  32. {
  33. $pagefile='TranMedia.php';
  34. }
  35. else
  36. {
  37. exit();
  38. }
  39. @include($pagefile);
  40. ?>