欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php fckeditor 調用的函數(shù)

 更新時間:2009年06月21日 18:54:47   作者:  
showfck() 編輯器調用函數(shù)
復制代碼 代碼如下:

/*
* showfck() 編輯器調用函數(shù)
* @name 名字 (必須)
* @val value默認值
* @toolbarset fck工具欄名字
* @width 寬度
* @height 高度
*/
function showfck($name, $val= '', $toolbarset = '', $width = '100%', $height = '200'){
$classname = 'fckname';
echo "<div class=\"$classname\">";
require_once WEB_ROOT . './include/fckeditor/fckeditor.php';
$fck = new FCKeditor($name);
$fck->BasePath = './include/fckeditor/';
$fck->Config['CustomConfigurationsPath'] = $fck->BasePath . 'custom_config.js';
$fck->ToolbarSet = $toolbarset;
$fck->Value = $val;
$fck->Width = $width;
$fck->Height = $height;
$fck->Create('');
echo "</div>";
}

相關文章

最新評論