eshoweditor.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. //变量名,变量值,工具条模式,编辑器目录,高度,宽度,全页
  3. function ECMS_ShowEditorVar($varname,$varvalue,$toolbar='full',$basepath='',$height='300',$width='100%',$fullpage=0){
  4. $toolbar=strtolower($toolbar);
  5. if($varvalue)
  6. {
  7. $varvalue=ehtmlspecialchars($varvalue);
  8. }
  9. if(empty($basepath))
  10. {
  11. $basepath='../data/ecmseditor/infoeditor/';
  12. }
  13. if(empty($height))
  14. {
  15. $height='300';
  16. }
  17. if(empty($width))
  18. {
  19. $width='100%';
  20. }
  21. $editorvars='';
  22. if($fullpage==1)
  23. {
  24. $editorvars.="fullPage:true, ";
  25. }
  26. if($toolbar=='basic')
  27. {
  28. $editorvars.="toolbar:'basic', ";
  29. }
  30. $editorvars.="width:'".$width."', height:'".$height."'";
  31. $echoeditor="<textarea cols='90' rows='10' id='".$varname."' name='".$varname."'>".$varvalue."</textarea>
  32. <script type='text/javascript'>CKEDITOR.replace('".$varname."',
  33. {
  34. ".$editorvars."
  35. });</script>";
  36. return $echoeditor;
  37. }
  38. //返回加载JS文件
  39. function ECMS_ShowEditorJS($basepath=''){
  40. if(empty($basepath))
  41. {
  42. $basepath='../data/ecmseditor/infoeditor/';
  43. }
  44. $addcs=ECMS_ReturnEditorCx();
  45. $loadjs='<input type=hidden id=doecmseditor_eaddcs value="'.$addcs.'"> <script type="text/javascript" src="'.$basepath.'ckeditor.js?&empirecms=1"></script>';
  46. return $loadjs;
  47. }
  48. //附加参数
  49. function ECMS_ReturnEditorCx(){
  50. global $classid,$id,$filepass;
  51. $classid=(int)$classid;
  52. $filepass=(int)$filepass;
  53. $id=(int)$id;
  54. $str="&classid=$classid&filepass=$filepass&infoid=$id";
  55. return $str;
  56. }
  57. //上传提示
  58. function ECMS_PTEditorShowError($type,$error,$showstr,$add,$ecms=0){
  59. ?>
  60. <script type='text/javascript'>
  61. <?php
  62. if($error)
  63. {
  64. echo'alert("'.$error.'");';
  65. }
  66. if($showstr&&$showstr!='####')
  67. {
  68. echo"window.parent.EcmsEditorReturnDoAction".$type."('".addslashes($showstr)."');";
  69. }
  70. ?>
  71. </script>
  72. <?php
  73. }
  74. //返回type
  75. function ECMS_EditorReturnType($page){
  76. if(empty($page))
  77. {
  78. $page=$_POST['doecmspage']?$_POST['doecmspage']:$_GET['doecmspage'];
  79. }
  80. if($page=='TranFile')
  81. {
  82. $r['ftype']=0;
  83. $r['jsfun']='EHEcmsEditorDoTranFile';
  84. }
  85. elseif($page=='TranFlash')
  86. {
  87. $r['ftype']=2;
  88. $r['jsfun']='EHEcmsEditorDoTranFlash';
  89. }
  90. elseif($page=='TranMedia')
  91. {
  92. $r['ftype']=3;
  93. $r['jsfun']='EHEcmsEditorDoTranMedia';
  94. }
  95. elseif($page=='TranMore')
  96. {
  97. $r['ftype']='TM';
  98. $r['jsfun']='EHEcmsEditorDoTranMore';
  99. }
  100. elseif($page=='TranImg2')
  101. {
  102. $r['ftype']=1;
  103. $r['jsfun']='EHEcmsEditorDoTranImgTwo';
  104. }
  105. else //TranImg
  106. {
  107. $r['ftype']=1;
  108. $r['jsfun']='EHEcmsEditorDoTranImg';
  109. }
  110. return $r;
  111. }
  112. //选择提示
  113. function ECMS_EditorChFileFun($page){
  114. $r=ECMS_EditorReturnType($page);
  115. return $r['jsfun'];
  116. }
  117. ?>