dedecms通过include/helpers/util.helper.php
function GetEditor($fname, $fvalue, $nheight=”350″, $etype=”Basic”, $gtype=”print”, $isfullpage=”FALSE”)
* 获取编辑器
*
* @param string $fname 表单名称
* @param string $fvalue 假如表单中有默认值,则填入默认值
* @param string $nheight 高度
* @param string $etype 编辑器范例
* @param string $gtype 获取范例
* @param string $isfullpage 是否全屏
* @return string
修改文本编辑器上面东西栏图标名目信息,可以通过includes/ckeditor/ckeditor.inc.php
图集编辑器太太简朴,怎么修改成和文档宣布一样的编辑器成果,需要在/dede/templets/album_add.htm 中查找
<?php GetEditor("body","",450,"Diy"); ?>
换成:
<?php GetEditor("body",$addRow['body'],450); ?>
就可以显示分页符的成果了。
dede/templets/album_edit.htm 也一样换一下。