[1.5.4][范例] CI 集成 FCKeditor
传统最简单的方式是直接用php的过程式编程方式,用 include 或 require 来调用fck的文件。但是既然CI绝大部分是OO的,那么我们也就尽量用OO的方式来集成fckeditor。
1. 下载解压fckeditor。将文件放在随便哪个目录,我自己是放在 ./plugins/fckeditor/ 下。
2. 接着,按照你的php版本,将fckeditor_php4.php或fckeditor_php5.php复制到 ./system/application/libraries/ 下并更名为 fckeditor.php
3. 打开此文件,将类名更改为 Fckeditor
4. 打开 ./plugins/fckeditor (或者你自己选择的目录)下的 fckeditor.php,复制 FCKeditor_IsCompatibleBrowser() 里的 所有内容,拷贝替换到 ./system/application/libraries/fckeditor.php 里的 IsCompatible()。
5. 修改 ./system/application/libraries/fckeditor.php 的 constructor 里的 basepath 定义。比如我的 ./plugins/fckeditor 就如此定义:
$this->BasePath = base_url().'/plugins/fckeditor/' ;
6. 设置完毕!在控制器里如此调用就可以了:
$this->load->library('fckeditor', 'content');
$this->fckeditor->Value = $some_object->content;
$data['fckeditor'] = $this->fckeditor->CreateHtml();
view里用 <?=$fckeditor?>就可以了。
其中调用library时的第二个参数是$_POST的key。如此就能用 $this->fckeditor->Value 来定义该值。 顶!!!!
太感谢了:)呵呵, 不错,学习了:lol :lol fckeditor
怎么选择支持中文 fckconfig.js 文件
再次感谢濸蓝
按照你的步骤,已经成功调用fck...全部过程不超过10分钟,呵呵
进入下一步环节。
//bow 提问:
$this->load->library('fckeditor', 'content');
这样的话,如何在一页里显示多个FCK? 兄弟,你是fckeditor是什么版本啊,我的怎么和你的不一样呢,
我的fckeditor.php文件的代码如下没有找到你教程上面说的那个
<?php
if ( version_compare( phpversion(), '5', '<' ) )
include_once( 'fckeditor_php4.php' ) ;
else
include_once( 'fckeditor_php5.php' ) ;
?>
而我猜想,改成如下
<?php
if ( version_compare( phpversion(), '5', '<' ) )
include_once( base_url().'system/plugins/fckeditor/fckeditor_php4.php' ) ;
else
include_once( '/plugins/fckeditor/fckeditor_php5.php' ) ;
?>
但是出现如下错误
0
Fatal error: Cannot instantiate non-existent class: fckeditor in d:\appserv\www\blog\system\libraries\Loader.php on line 867 好东西。。。收藏。。。:lol
tips
if you are using .htaccessyou have to add "system/plugins/fckeditor" to the rewrite condition
like this:
RewriteCond $1 !^(index\.php|system/plugins/fckeditor)
and in my situation if have to set the base path like:
$this->BasePath = base_url().'system/plugins/fckeditor/' ;
---------------
Hex 翻译中文版如下:
如果你使用 .htaccess 的话,你应该添加“system/plugins/fckeditor”到 rewrite 条件中,
例如:
RewriteCond $1 !^(index\.php|system/plugins/fckeditor)
而在我的情况下,要像这样设置 base path:
$this->BasePath = base_url().'system/plugins/fckeditor/' ;