eshoweditortemp.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. //变量名,变量值,工具条模式,编辑器目录,高度,宽度,全页
  3. function ECMS_TempShowEditorVar($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='ecmseditor/tempeditor/';
  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_TempShowEditorJS($basepath=''){
  40. if(empty($basepath))
  41. {
  42. $basepath='ecmseditor/tempeditor/';
  43. }
  44. $addcs=ECMS_TempReturnEditorCx();
  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_TempReturnEditorCx(){
  50. global $filepass,$enews,$ecms_hashur;
  51. $filepass=(int)$filepass;
  52. $str="&filepass=$filepass".$ecms_hashur['ehref'];
  53. return $str;
  54. }
  55. //上传提示
  56. function ECMS_TempPTEditorShowError($type,$error,$showstr,$add,$ecms=0){
  57. ?>
  58. <script type='text/javascript'>
  59. <?php
  60. if($error)
  61. {
  62. echo'alert("'.$error.'")';
  63. }
  64. if($showstr)
  65. {
  66. echo"window.parent.EcmsTempEditorDoAction".$type."('".addslashes($showstr)."');";
  67. }
  68. ?>
  69. </script>
  70. <?php
  71. }
  72. ?>