效果预览:
下载附件并上传至插件目录
下载附件里的编辑器(选择你需要的编码的编辑器),解压进入文件夹把ueditor
这个目录上传到帝国的插件目录里即:(/e/extend/
)
附件地址:百度编辑器ueditor
数据表代码修改
后台 → 系统 → 数据表与系统模型 → 管理数据表找到你要使用编辑器的数据表
更换编辑器的字段替换代码:下面截图是 文章模型.新闻正文字段
完整代码:
输入表单替换html代码:
<?php
$ziduan = 'newstext'; //编辑器使用的字段名称
if ( $enews == 'MAddInfo' || $enews == 'MEditInfo' ) { //前台投稿
$qiantai = 1;
$ziduanzhi = $ecmsfirstpost == 1 ? "" : DoReqValue( $mid, $ziduan, stripSlashes( $r[ $ziduan ] ) );
} else { //后台
$qiantai = 0;
$ziduanzhi = $ecmsfirstpost == 1 ? "" : stripSlashes( $r[ $ziduan ] );
}
?>
<script>
var classid = '<?=$classid?>',
infoid = '<?=$id?>',
filepass = '<?=$filepass?>',
ehash = '<?=$ecms_hashur[ehref]?>',
qiantai = '<?=$qiantai?>'; //把参数传给编辑器,增加支持7.2版本的金刚模式
</script>
<script type="text/javascript" charset="utf-8" src="/e/extend/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="/e/extend/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript" charset="utf-8" src="/e/extend/ueditor/ueditor.toolbarconfig.js"></script>
<textarea id="<?=$ziduan?>" name="<?=$ziduan?>"><?=$ziduanzhi?></textarea>
<script type="text/javascript">
<?=$ziduan?> = UE.getEditor( '<?=$ziduan?>', {
serverUrl: "/e/extend/ueditor/php/controller.php", //自己的请求接口
toolbars: Default, //工具栏配置文件,具体参考ueditor.toolbarconfig.js文件中说明
pageBreakTag: '[!--empirenews.page--]', //帝国分页标签
initialFrameWidth: '100%', //编辑器宽
initialFrameHeight: 300 //编辑器高
//等等其它配置自行添加,参考UE默认配置文件复制修改即可
} );
//自定义请求参数
<?=$ziduan?>.ready( function () {
<?=$ziduan?>.execCommand( 'serverparam', {
'filepass': '<?=$filepass?>', //修改时候是信息ID
'classid': '<?=$classid?>',
'qiantai': <?=$qiantai?>
} );
} );
</script>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr>
<td bgcolor="#FFFFFF"> <input name="dokey" type="checkbox" value="1" <?=$r[dokey]==1? ' checked': ''?>> 关键字替换 <input name="copyimg" type="checkbox" id="copyimg" value="1"> 远程保存图片(
<input name="mark" type="checkbox" id="mark" value="1">
<a href="SetEnews.php" target="_blank">加水印</a>)
<input name="copyflash" type="checkbox" id="copyflash" value="1"> 远程保存FLASH(地址前缀:
<input name="qz_url" type="text" id="qz_url" size=""> )
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><input name="repimgnexturl" type="checkbox" id="repimgnexturl" value="1"> 图片链接转为下一页 <input name="autopage" type="checkbox" id="autopage" value="1">自动分页 ,每
<input name="autosize" type="text" id="autosize" value="5000" size="5"> 个字节为一页 取第
<input name="getfirsttitlepic" type="text" id="getfirsttitlepic" value="" size="1"> 张上传图为标题图片(
<input name="getfirsttitlespic" type="checkbox" id="getfirsttitlespic" value="1"> 缩略图: 宽
<input name="getfirsttitlespicw" type="text" id="getfirsttitlespicw" size="3" value="<?=$public_r[spicwidth]?>"> *高
<input name="getfirsttitlespich" type="text" id="getfirsttitlespich" size="3" value="<?=$public_r[spicheight]?>"> )
</td>
</tr>
</table>
投稿表单替换html代码:
<?=ECMS_ShowEditorVar("newstext",$ecmsfirstpost==1?"":DoReqValue($mid,'newstext',stripSlashes($r[newstext])),"Default","","300","100%")?>
注意:如果改了后台目录请更改\ueditor\ueditor.toolbarconfig.js
这个文件内的路径!
window.open('/e/admin/ecmseditor/FileMain.php?type=1&classid='+classid+'&infoid='+infoid+'&filepass='+filepass+'&sinfo=1&doing=1'+ehash,'','width=700,height=550,scrollbars=yes');
恢复默认编辑器
还原回帝国CMS默认编辑器,输入表单替换html代码:
<?=ECMS_ShowEditorVar("newstext",$ecmsfirstpost==1?"":stripSlashes($r[newstext]),"Default","","300","100%")?>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr>
<td bgcolor="#FFFFFF"> <input name="dokey" type="checkbox" value="1"<?=$r[dokey]==1?' checked':''?>>
关键字替换 <input name="copyimg" type="checkbox" id="copyimg" value="1">
远程保存图片(
<input name="mark" type="checkbox" id="mark" value="1">
<a href="SetEnews.php?<?=$ecms_hashur[ehref]?>&" target="_blank">加水印</a>)
<input name="copyflash" type="checkbox" id="copyflash" value="1">
远程保存FLASH(地址前缀:
<input name="qz_url" type="text" id="qz_url" size="">
)</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><input name="repimgnexturl" type="checkbox" id="repimgnexturl" value="1"> 图片链接转为下一页 <input name="autopage" type="checkbox" id="autopage" value="1"> 自动分页
,每
<input name="autosize" type="text" id="autosize" value="5000" size="5">
个字节为一页 取第
<input name="getfirsttitlepic" type="text" id="getfirsttitlepic" value="" size="1">
张上传图为标题图片(
<input name="getfirsttitlespic" type="checkbox" id="getfirsttitlespic" value="1">
缩略图: 宽
<input name="getfirsttitlespicw" type="text" id="getfirsttitlespicw" size="3" value="<?=$public_r[spicwidth]?>">
*高
<input name="getfirsttitlespich" type="text" id="getfirsttitlespich" size="3" value="<?=$public_r[spicheight]?>">
)</td>
</tr>
</table>
评论(0)