博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHPCMS v9栏目添加字段及描述编辑器修改方法
阅读量:6138 次
发布时间:2019-06-21

本文共 2208 字,大约阅读时间需要 7 分钟。

为PHPCMS v9栏目添加字段和把描述的textarea编辑器变成fceditor编辑器的方法。如下:

  1. 添加数据库字段:description1,添加位置:v9_catetory表

  2. 在category_add.tpl.php中把

  <textarea name="info[description]" cols="50" rows="8" id="content"><?php echo $description;?></textarea>

  变成Fceditor的小型编辑器

  <script type="text/javascript" src="/statics/js/ckeditor/ckeditor.js"></script> <textarea name="info[description]" cols="50" rows="8" id="content"><?php echo $description;?></textarea> <script type="text/javascript"> CKEDITOR.replace( 'content',{height:100,width:400,pages:false,subtitle:false,textareaid:'content',module:'',catid:'', flashupload:true,alowuploadexts:'',allowbrowser:'1',allowuploadnum:'10',authkey:'c8e07e653e467f2f1b2058ee44db799c', filebrowserUploadUrl : '/index.php?m=attachment&c=attachments&a=upload&module=&catid=&dosubmit=1', toolbar : [ ['Source'],['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],['Maximize'], //这是工具列表 ] }); </script>

  3. 添加新字段description1的输入表单

  <tr> <th>简介:</th> <td> <textarea name="info[description1]" id="content1"><?php echo $description1;?></textarea> <script type="text/javascript"> CKEDITOR.replace( 'content1',{height:200,pages:false,subtitle:false,textareaid:'content',module:'',catid:'', flashupload:true,alowuploadexts:'',allowbrowser:'1',allowuploadnum:'10',authkey:'c8e07e653e467f2f1b2058ee44db799c', filebrowserUploadUrl : '/index.php?m=attachment&c=attachments&a=upload&module=&catid=&dosubmit=1', toolbar : [ ['Source','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],['ShowBlocks'],['Image','Capture','Flash'],['Maximize'], '/', ['Bold','Italic','Underline','Strike','-'], ['Subscript','Superscript','-'], ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], ['attachment'], ] }); </script> <div class='editor_bottom'><script type="text/javascript" src="/statics/js/swfupload/swf2ckeditor.js"></script></div> </td> </tr>

转载地址:http://iikya.baihongyu.com/

你可能感兴趣的文章
Object-c的基础概念
查看>>
自我关系的建立
查看>>
mysql读取配置文件的顺序
查看>>
《游戏程序设计模式》 2 - 顺序模式
查看>>
数据过滤器注解@Filter 如何在hibernate、spring data jpa中调用
查看>>
Eclipse上GIT插件EGIT使用手册之九_Rebase和Merge的区别
查看>>
关闭进程中打印信息
查看>>
安装memcached软件并用简单脚本做测试
查看>>
MySQL表新增字段默认值处理的一处小细节
查看>>
MEMCACHE TIME_WAIT过多的解决方法
查看>>
firefox httpfox插件
查看>>
MongoDB分片
查看>>
酒店IPTV系统搭建有什么省钱方案?
查看>>
抽丝剥茧:生产环境中负载均衡产品DPDK问题的解决
查看>>
从H5唤醒App:一步直达App核心页面
查看>>
记录Android 资源镜像
查看>>
centos7开启关闭防火墙端口 c
查看>>
一文看懂:光学行业 三摄+潜望式+3D
查看>>
如何把语音转化为文字
查看>>
Intel X710芯片万兆网卡
查看>>