博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CI框架中集成CKEditor编辑器的教程
阅读量:6301 次
发布时间:2019-06-22

本文共 2014 字,大约阅读时间需要 6 分钟。

CKEditor是在很多开发过程中都会用到的一个富文本编辑器,那么如何在CI框架中使用它呢?这里介绍了在CI下使用CKEditor的方法,版本比较低,是在CI 1.7.3下使用fckeditor 2.6.6。供大家参考。

 

1、将fckeditor目录置入CI_PATH/system/plugins/

2、在CI_PATH/system/application/config/config.php中加入:

$config['fckeditor_basepath'] = "/system/plugins/fckeditor/"; 

$config['fckeditor_toolbarset_default'] = 'Default';

3、创建helper,在/system/application/helpers新建form_helper.php

 

复制代码代码如下:
<?php 
if (!defined('BASEPATH')) exit('No direct script access allowed');
include_once( BASEPATH . '/helpers/form_helper'.EXT);
function form_fckeditor($data = '', $value = '', $extra = '')
{
     $CI =& get_instance();
    $fckeditor_basepath = $CI->config->item('fckeditor_basepath');
     require_once( $_SERVER["DOCUMENT_ROOT"] . $fckeditor_basepath. 'fckeditor.php' );
    $instanceName = ( is_array($data) && isset($data['name'])   ) ? $data['name'] : $data;
    $fckeditor = new FCKeditor($instanceName);
     if( $fckeditor->IsCompatible() )
    {
         $fckeditor->Value = html_entity_decode($value);
        $fckeditor->BasePath = $fckeditor_basepath;
         if( $fckeditor_toolbarset = $CI->config->item('fckeditor_toolbarset_default'))
                $fckeditor->ToolbarSet = $fckeditor_toolbarset;
         if( is_array($data) )
        {
            if( isset($data['value']) )
                $fckeditor->Value = html_entity_decode($data['value']);
             if( isset($data['basepath']) )
                $fckeditor->BasePath = $data['basepath'];
             if( isset($data['toolbarset']) )
                $fckeditor->ToolbarSet = $data['toolbarset'];
             if( isset($data['width']) )
                $fckeditor->Width = $data['width'];
             if( isset($data['height']) )
                $fckeditor->Height = $data['height'];
        }
        return $fckeditor->CreateHtml();
    }
    else
    {
        return form_textarea( $data, $value, $extra );
    }
}
?> 

 

4、在项目中使用fckeditor

 

复制代码代码如下:
<?php
$this->load->helper('form_helper');
$data = array(
    'name'        => 'newsContent',
    'id'          => 'newsContent',
    //'toolbarset'  => 'Advanced',
    'basepath'    => $this->config->item('fckeditor_basepath'),
    'width'       => '80%',
    'height'      => '200'
);
echo form_fckeditor( $data );
?>
如何联系我:【万里虎】www.bravetiger.cn 【QQ】3396726884 (咨询问题100元起,帮助解决问题500元起) 【博客】http://www.cnblogs.com/kenshinobiy/
你可能感兴趣的文章
移动端即时通讯系统实践
查看>>
win2012物理机服务器的Hyper-v下建虚拟机win2012做NTP服务器
查看>>
某公司HP-EVA4400存储硬盘离线的数据恢复方法和数据恢复过程
查看>>
gzip压缩文件损坏的修复方法
查看>>
POJ -- 1182 食物链
查看>>
手动编译安装LNMP环境,搭建wordpress博客
查看>>
通过Rsyslog实现对Nginx日志发送至日志服务器
查看>>
xfire开发webservice
查看>>
自动寻址多任务文件下载程序综述
查看>>
linux 重定向命令(转自http://www.cnblogs.com/lovemo1314/archive/2011/07/13/210
查看>>
DB2 出现“SQL5005C”错误的原因之一
查看>>
文本的基本操作
查看>>
druid常见问题
查看>>
QString,char,string之间赋值
查看>>
蓝鸥Unity开发基础二——课时13 构造方法
查看>>
2016年学习Linux决心书(老男孩教育在线课程班第二期)
查看>>
c语言指针
查看>>
Linux LVM逻辑卷管理
查看>>
Myeclipse 添加本地XSD文件
查看>>
CCNA学习笔记--IP地址分类
查看>>