您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

ecshop新增一个编辑器的方法步骤

卫荷2025-01-17 16:10:20ecshop商城教程已有人查阅

导读在ecshop的后台新增一个编辑器框步骤一:找到lib_main.php 文件:admin/includes/lib_main.php。

在ecshop的后台新增一个编辑器框
步骤一:找到lib_main.php 文件:admin/includes/lib_main.php。
找到变量:function create_html_editor(),在它的下面重新新建一个变量 create_html_editor2。代码如下
function create_html_editor2($input_name, $input_value = '')
{
global $smarty;
$editor = new FCKeditor($input_name);
$editor->BasePath = '../includes/fckeditor/';
$editor->ToolbarSet = 'Normal';
$editor->Width = '100%';
$editor->Height = '320';
$editor->Value = $input_value;
$FCKeditor = $editor->CreateHtml();
$smarty->assign('FCKeditor2', $FCKeditor); /*这个FCKeditor2是以后需要调用的变量*/
}
步骤二:goods.php 文件:admin/goods.php
找到create_html_editor,在他的下面 新创建一个create_html_editor2。代码如下:
/* 创建 html editor */
create_html_editor('goods_desc', $goods['goods_desc']);
/*创建第二编辑器 Author: Sky*/
create_html_editor2('goods_desc2', $goods['goods_desc2']); /*goods_desc2 与数据库字段要保持一直*/
前台调用方法:{$FCKeditor2} ,此时,编辑器创建成功。
步骤三:数据入库。编辑器创建成功,该如何入库呢。文件goods.php
找到sql。在第916行。新增一段代码。代码如下:
"goods_desc = '$_POST[goods_desc]', " .
"goods_desc2 = '$_POST[goods_desc2]', " . //新增官方描述
$db->query($sql);在第941行。 是执行插入。

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签