當前位置:首頁 >  站長 >  建站經(jīng)驗 >  正文

織夢dedecms不同頁面使用不同ueditor編輯器配置

 2013-04-17 22:31  來源: 小創(chuàng)意網(wǎng)   我來投稿 撤稿糾錯

  域名預訂/競價,好“米”不錯過

昨天,我為大家介紹了織夢dedecms下使用百度ueditor時針對不同頁面使用不同編輯器寬度的方法,雖然這個方法很實用,但其局限性也比較強:只能設(shè)置寬度,不能進行其它個性配置。下面再來為大家介紹一個對ueditor進行頁面?zhèn)€性配置的方法,即不同頁面使用不同的配置,我想這個方法應(yīng)該能解決各位站長朋友的很多問題了,至于你更喜歡哪種方法,那就仁者見仁了。

下圖是小創(chuàng)意網(wǎng)使用百度ueditor時使用不同配置的截圖:

對前臺編輯器進行配置,取消其附件上傳和圖片在線管理功能

后臺編輯器全功能配置

下面就來談?wù)勗趺磳崿F(xiàn)(至于ueditor怎么安裝,請到官方論壇查看):

1. 首先復制 /include/ueditor/editor_config.js ,粘貼并改名得到 /include/ueditor/editor_config1.js

2. 在/include/helpers/util.helper.php中增加以下代碼(此處和上篇文章同):

if ( ! function_exists('GetEditorD'))

{

function GetEditorD($fname, $fvalue, $nheight="350", $etype="Basic", $gtype="print", $isfullpage="FALSE",$bbcode=false)

{

if(!function_exists('SpGetEditorD'))

{

require_once(DEDEINC."/inc/inc_fun_funAdmin.php");

}

return SpGetEditorD($fname, $fvalue, $nheight, $etype, $gtype, $isfullpage, $bbcode);

}

}

3. 在 /include/inc/inc_fun_funAdmin.php中增加以下代碼(此處有小改動):

function SpGetEditorD($fname,$fvalue,$nheight="350",$etype="Basic",$gtype="print",$isfullpage="false",$bbcode=false)

{
global $cfg_ckeditor_initialized;
if(!isset($GLOBALS['cfg_html_editor']))
{
$GLOBALS['cfg_html_editor']='fck';
}
if($gtype=="")
{
$gtype = "print";
}
if($GLOBALS['cfg_html_editor']=='fck')
{
require_once(DEDEINC.'/FCKeditor/fckeditor.php');
$fck = new FCKeditor($fname);
$fck->BasePath = $GLOBALS['cfg_cmspath'].'/include/FCKeditor/' ;
$fck->Width = '100%' ;
$fck->Height = $nheight ;
$fck->ToolbarSet = $etype ;
$fck->Config['FullPage'] = $isfullpage;
if($GLOBALS['cfg_fck_xhtml']=='Y')
{
$fck->Config['EnableXHTML'] = 'true';
$fck->Config['EnableSourceXHTML'] = 'true';
}
$fck->Value = $fvalue ;
if($gtype=="print")
{
$fck->Create();
}
else
{
return $fck->CreateHtml();
}
}
else if($GLOBALS['cfg_html_editor']=='ckeditor')
{
require_once(DEDEINC.'/ckeditor/ckeditor.php');
$CKEditor = new CKEditor();
$CKEditor->basePath = $GLOBALS['cfg_cmspath'].'/include/ckeditor/' ;
$config = $events = array();
$config['extraPlugins'] = 'dedepage,multipic,addon';
if($bbcode)
{
$CKEditor->initialized = true;
$config['extraPlugins'] .= ',bbcode';
$config['fontSize_sizes'] = '30/30%;50/50%;100/100%;120/120%;150/150%;200/200%;300/300%';
$config['disableObjectResizing'] = 'true';
$config['smiley_path'] = $GLOBALS['cfg_cmspath'].'/images/smiley/';
// 獲取表情信息
require_once(DEDEDATA.'/smiley.data.php');
$jsscript = array();
foreach($GLOBALS['cfg_smileys'] as $key=>$val)
{
$config['smiley_images'][] = $val[0];
$config['smiley_descriptions'][] = $val[3];
$jsscript[] = '"'.$val[3].'":"'.$key.'"';
}
$jsscript = implode(',', $jsscript);
echo jsscript('CKEDITOR.config.ubb_smiley = {'.$jsscript.'}');
}
$GLOBALS['tools'] = empty($toolbar[$etype])? $GLOBALS['tools'] : $toolbar[$etype] ;
$config['toolbar'] = $GLOBALS['tools'];
$config['height'] = $nheight;
$config['skin'] = 'kama';
$CKEditor->returnOutput = TRUE;
$code = $CKEditor->editor($fname, $fvalue, $config, $events);
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}else if($GLOBALS['cfg_html_editor']=='ueditor')
{
$fvalue = $fvalue=='' ? '

' : $fvalue;
$code = '<script type="text/javascript" charset="gbk" src="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/editor_config1.js"> //此處為前臺配置文件
<script type="text/javascript" charset="gbk" src="'.$GLOBALS['cfg_cmspath'].'/include/ueditor/editor_all_min.js">


<script type="text/javascript">
var ue = new baidu.editor.ui.Editor();ue.render("'.$fname.'"); //不在此處修改寬度
';
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}
else {
/*
// ------------------------------------------------------------------------
// 當前版本,暫時取消dedehtml編輯器的支持
// ------------------------------------------------------------------------
require_once(DEDEINC.'/htmledit/dede_editor.php');
$ded = new DedeEditor($fname);
$ded->BasePath = $GLOBALS['cfg_cmspath'].'/include/htmledit/' ;
$ded->Width = '100%' ;
$ded->Height = $nheight ;
$ded->ToolbarSet = strtolower($etype);
$ded->Value = $fvalue ;
if($gtype=="print")
{
$ded->Create();
}
else
{
return $ded->CreateHtml();
}
*/
}
}
3. 在編輯器調(diào)取頁面將以下代碼:

改為:

4. 當需要進行前臺編輯器寬度及部分控件顯示/隱藏操作時,直接對/include/ueditor/editor_config1.js進行修改即可,如:
要取消圖片在線管理功能,只需將
,imageManagerUrl:URL + "php/imageManager.php"

,imageManagerPath:"/"
這兩行注釋掉即可,像小創(chuàng)意網(wǎng)(www.smallcy.com)增加了刪除文章同時刪除文章中圖片及附件功能,如果前臺開放圖片在線管理功能,當一篇不符要求的文章使用了在線管理中圖片,此時當我們刪除文章時會同時刪除在線管理中的圖片,這樣會給其它文章造成影響,所以前臺關(guān)閉些功能還是非常必要的。
要修改編輯器寬度,只需修改:
,initialFrameWidth:1000
將1000改為你想要的寬度;
要隱藏部分控件,只需找到 ,toolbars: 然后刪除相應(yīng)控件的標志即可。

申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點子。點擊此處,共同探討創(chuàng)業(yè)新機遇!

相關(guān)文章

熱門排行

信息推薦