| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 | <?php//变量名,变量值,工具条模式,编辑器目录,高度,宽度,全页function ECMS_ShowEditorVar($varname,$varvalue,$toolbar='full',$basepath='',$height='300',$width='100%',$fullpage=0){	$toolbar=strtolower($toolbar);	if($varvalue)	{		$varvalue=ehtmlspecialchars($varvalue);	}	if(empty($basepath))	{		$basepath='../data/ecmseditor/infoeditor/';	}	if(empty($height))	{		$height='300';	}	if(empty($width))	{		$width='100%';	}	$editorvars='';	if($fullpage==1)	{		$editorvars.="fullPage:true, ";	}	if($toolbar=='basic')	{		$editorvars.="toolbar:'basic', ";	}	$editorvars.="width:'".$width."', height:'".$height."'";	$echoeditor="<textarea cols='90' rows='10' id='".$varname."' name='".$varname."'>".$varvalue."</textarea><script type='text/javascript'>CKEDITOR.replace('".$varname."',{     ".$editorvars."});</script>";	return $echoeditor;}//返回加载JS文件function ECMS_ShowEditorJS($basepath=''){	if(empty($basepath))	{		$basepath='../data/ecmseditor/infoeditor/';	}	$addcs=ECMS_ReturnEditorCx();	$loadjs='<input type=hidden id=doecmseditor_eaddcs value="'.$addcs.'"> <script type="text/javascript" src="'.$basepath.'ckeditor.js?&empirecms=1"></script>';	return $loadjs;}//附加参数function ECMS_ReturnEditorCx(){	global $classid,$id,$filepass;	$classid=(int)$classid;	$filepass=(int)$filepass;	$id=(int)$id;	$str="&classid=$classid&filepass=$filepass&infoid=$id";	return $str;}//上传提示function ECMS_PTEditorShowError($type,$error,$showstr,$add,$ecms=0){?><script type='text/javascript'><?phpif($error){	echo'alert("'.$error.'");';}if($showstr&&$showstr!='####'){	echo"window.parent.EcmsEditorReturnDoAction".$type."('".addslashes($showstr)."');";}?></script><?php}//返回typefunction ECMS_EditorReturnType($page){	if(empty($page))	{		$page=$_POST['doecmspage']?$_POST['doecmspage']:$_GET['doecmspage'];	}	if($page=='TranFile')	{		$r['ftype']=0;		$r['jsfun']='EHEcmsEditorDoTranFile';	}	elseif($page=='TranFlash')	{		$r['ftype']=2;		$r['jsfun']='EHEcmsEditorDoTranFlash';	}	elseif($page=='TranMedia')	{		$r['ftype']=3;		$r['jsfun']='EHEcmsEditorDoTranMedia';	}	elseif($page=='TranMore')	{		$r['ftype']='TM';		$r['jsfun']='EHEcmsEditorDoTranMore';	}	elseif($page=='TranImg2')	{		$r['ftype']=1;		$r['jsfun']='EHEcmsEditorDoTranImgTwo';	}	else	//TranImg	{		$r['ftype']=1;		$r['jsfun']='EHEcmsEditorDoTranImg';	}	return $r;}//选择提示function ECMS_EditorChFileFun($page){	$r=ECMS_EditorReturnType($page);	return $r['jsfun'];}?>
 |