文件名称:ckeditor 4代码插件
文件大小:5KB
文件格式:ZIP
更新时间:2015-12-26 05:26:19
ckeditor 4 代码 插件
ckeditor 4 代码插件安装 主页:wudimei.com 安装 把plugins复制到ckeditor目录中,注意是ckeditor4. 修改ckeditor/config.js,加入如下代码: CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.extraPlugins = 'code'; }; 使用代码插件 在ckeditor工具栏中点击"<>"按钮,选择php语言,输入代码,然后点“确定”,插入的代码是这样的: [php]<?php define('SITE_DOC_ROOT', dirname( __FILE__ ) ); set_include_path( "." . PATH_SEPARATOR . SITE_DOC_ROOT. PATH_SEPARATOR. get_include_path() ); require_once 'Rong/Object.php'; require_once 'Rong/View.php'; $wudimei = Rong_View::factory("Wudimei"); $wudimei->setViewsDirectory( SITE_DOC_ROOT . "/templates/default" ); $wudimei->compileDir = SITE_DOC_ROOT ."/data/templates/compiled"; $wudimei->assign("name","杨庆荣"); $wudimei->assign("age",1985); $wudimei->display("index/index.html"); ?>[/php] 后台语法高亮 1.具体做法是用preg_replace_callback,提取出"\[php\](.+)\[\/php\]",然后用highlight函数语法加亮。 2.提取之后,可以用str_replace函数来加亮,例如str_replace("{","{", $code ); str_replace(")","{", $code ); 3.当然,也许你需要把>和<之类的html字符转换成">"或者"<"。 版权所有:深圳市无敌美电子商务商行,您可以在保留无敌美版权信息的情况下免费使用此插件。
【文件预览】:
ckeditor4_code_plugin
----install.html(2KB)
----config.js(372B)
----plugins()
--------code()