config.ToolbarSets["ToolBarSetName"] = [ // Toolbar名 ['Item 1','Item 2','-','Item 3','Item n'], // Toolbar第一行 ['Item 4','-','Item 5','Item 6','Item n'] // Toolbar第二行 ];
实例代码如下:
<?php $BasePath = "../include/FCKeditor/" ; include( $BasePath . "fckeditor.php" ); $fck = new FCKeditor ( 'p_info' ) ;//建立对像 $fck -> BasePath = $BasePath ;//Fckeditor所在的位置 $fck -> ToolbarSet = 'News' ;//News为自定义的Fckeditor工具栏名称 $fck -> Width = '700' ;//长度 $fck -> Height = '350' ;//高度 $fck -> Config [ 'AutoDetectLanguage' ] = false ;//语言自动检测 $fck -> Config [ 'DefaultLanguage' ]= 'zh-cn' ;//语言 $content = $fck -> CreateHtml ();//创建Fckeditor脚本文件 $smarty -> assign ( 'content' , $content ); $smarty -> display ( "fck.tpl" ); ?>
<tr align="left"> <td colspan="2" valign="top" bgcolor="#F5F5F5" class="font12en"> <{$content}> </td> </tr>
打开FCKeditor/fck_config.js文件:
使用时只需把
$oFCKeditor->ToolbarSet = 'Default'改为:
$oFCKeditor->ToolbarSet = 'www'即可,最后,我们把FCKeditor目录下所有以下划线“_”开头的目录都删掉以节省空间,如_test._samples.
希望本文所述对大家的php程序设计有所帮助。