PHPCMS v9栏目添加字段及描写编辑器修改要领

  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=http://down.chinaz.com/"/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'],
'http://down.chinaz.com/',
['Bold','Italic','Underline','Strike','-'],
['Subscript','Superscript','-'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'http://down.chinaz.com/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['attachment'],
]
});
</script>
<div><script type="text/javascript" src=http://down.chinaz.com/"/statics/js/swfupload/swf2ckeditor.js"></script></div>
</td>
</tr>

  完成!

  原文地点:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10018.html