欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

KindEditor/初始化参数

程序员文章站 2024-04-04 15:36:23
...
  • fileManagerJson

指定浏览远程图片的服务器端程序。

数据类型: String; 默认值: basePath + ‘php/file_manager_json.php’

  • allowPreviewEmoticons

true时鼠标放在表情上可以预览表情。

数据类型: Boolean; 默认值: true

  • allowImageUpload

true时显示图片上传按钮。

数据类型: Boolean; 默认值: true

  1. public function add_code($id,$source){
  2. $data["userid"] = showcookie("uid");
  3. $data["codeid"] = $id;
  4. $data["source"] = $source;
  5. $data["addtime"] = time();
  6. if($this->add("codedata", $data)){
  7. return 1;
  8. }else{
  9. return 0;
  10. }
  11. }
复制代码