eshoweditor.php 2.8 KB

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