网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 PHPCMS v9栏目添加字段及描述编辑器修改方法
范文
    本文分享了:为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>
    完成!
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/23 1:32:03