PHPCMS 栏目添加字段和修改描述textarea变成fceditor编辑器
Posted yuan9580
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPCMS 栏目添加字段和修改描述textarea变成fceditor编辑器相关的知识,希望对你有一定的参考价值。
一、添加字段方法:
1. 添加数据库字段:description1,添加位置:v9_catetory表
找到phpcms/moudles/admin/templates/category_add.tpl.php,打开文件,大概77行左右的位置,找到:
<tr>
<th><?php echo L(‘description‘)?>:</th>
<td>
在上面增加一个输入表单:
<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>
二、找到phpcms/moudles/admin/templates/category_edit.tpl.php,也做同样的修改。
二、修改字段方法:
1、找到phpcms/moudles/admin/templates/category_add.tpl.php,打开文件,大概80行左右的位置,将下面代码替换:
<textarea name="info[description]" maxlength="255" style="width:300px;height:60px;"><?php echo $description;?></textarea>
替换成:
<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>
2、同理,找到同目录下的category_edit.tpl.php文件,修改对应的地方
以上是关于PHPCMS 栏目添加字段和修改描述textarea变成fceditor编辑器的主要内容,如果未能解决你的问题,请参考以下文章
使用phpcms如何修改使用中的网站,要在导航栏里加一个栏目,这个栏目在单链接一个页面?
phpcms栏目页模板上,循环所有子级栏目,设定每8个子级栏目为一页,请问具体如何分页?