ecshop后台商品编辑增加一个编辑框

2009-12-08 09:13 来源:www.chinab4c.com 作者:ecshop专家

    ecshop电子商务系统中,你在后台编辑商品详细信息的时候,很可能根据需要,给ecshop某商品的某字段增加一些图片或者是特别的文本编辑需求,这个时候,你就需要通过fck的编辑器,来重新实例化一个ecshop编辑器对象.达到进行编辑的目的.这也是ecshop的常见问题

1:alter table ecs_goods add column goods_waiguan text;
alter table ecs_goods add column goods_neichuang text, add column goods_fadongjichuang text, add column dipan text, add column yunxing text, add column zhenduan text;

2:admin/goods.php的add中
 //############################
    //增加外观编辑器
    //############################
    create_html_editor1('goods_waiguan', $goods['goods_waiguan']);
   
3:admin/includes/lib_main.php中
function create_html_editor1($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;
    $FCKeditor1 = $editor->CreateHtml();
    $smarty->assign('FCKeditor1', $FCKeditor1);
}

4:admin/goods.php中的insert中
,goods_waiguan
'$_POST[goods_waiguan]'

"goods_waiguan = '$_POST[goods_waiguan]', " .

5:goods.dwt中。
  {$goods.goods_waiguan}

相关文章:

  修改ecshop登陆记住登陆名称

来源:中国B4C电子商务