PHPCMS v9欄目添加字段及描述編輯器修改方法

爲PHPCMS v9欄目添加字段和把描述的textarea編輯器變成fceditor編輯器的方法。以下:javascript

  1. 添加數據庫字段:description1,添加位置:v9_catetory表php

  2. 在category_add.tpl.php中把java

  <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的輸入表單orm

  <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>ip

相關文章
相關標籤/搜索