新增加一调用编辑器函数

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

默认的create_html_editor()函数一个页面只能调用一次,但有一个页面出现俩个甚至是三个编辑器输入框的需求,所以我对这个函数进行了修改


  1. function create_html_editor_xaphp($input_name, $input_value = '')
  2. {
  3. global $smarty;
  4. $editor = new FCKeditor($input_name);
  5. $editor->BasePath= '../includes/fckeditor/';
  6. $editor->ToolbarSet = 'Normal';
  7. $editor->Width= '100%';
  8. $editor->Height= '320';
  9. $editor->Value= $input_value;
  10. $FCKeditor = $editor->CreateHtml();
  11. $smarty->assign($input_name, $FCKeditor);
  12. }
复制代码


遇到类似的需求 把这个函数也添加到lib_main.php里进行调用 .

回答:
很好~~~~

非常好!!!!!!!

今天用到了感谢齐老师的分享

感谢分享

不错,谢谢 楼主了

支持分享!!!

我要在ECSHOP后台库项目管理那里添加一个和详细描述的编辑器一样模块,让我自己写的代码可以在首页中间显示。就像淘宝自定义内容区一样可以自由添加图片和代码。。。。请问一下如何添加?