****CI和UEditor集成

百度UEditor是一款比較經常使用編輯器 
下載地址: 
http://ueditor.baidu.com/website/download.htmljavascript

1.在assets目錄下創建ueditor文件夾,把下載的源碼放入該文件夾 
2.在須要使用ueditor的文件內引入ueditor相關文件 
上代碼:php




<html> <head> <title>完整demo</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <script type="text/javascript" charset="utf-8" src="<?php echo base_url().'assets/ueditor/;?>ueditor.config.js"></script> <script type="text/javascript" charset="utf-8" src="<?php echo base_url().'assets/ueditor/;?>ueditor.all.min.js"> </script> <script type="text/javascript" charset="utf-8" src="<?php echo base_url().'assets/ueditor/;?>lang/zh-cn/zh-cn.js"></script> <style type="text/css"> div{ width:100%; } </style> </head> <body> <div> <h1>完整demo</h1> <script name="content" id="editor" type="text/plain" style="width:1024px;height:500px;"> 初始化內容 </script> </div> <script type="text/javascript"> var ue = UE.getEditor('editor'); </script> </body> </html>



CI框架整合UEditor編輯器上傳功能

最近項目中要使用到富文本編輯器,選用了功能強大的UEditor,接下來就來說講UEditor編輯器的上傳功能整合。css

本文UEditor版本:ueditor1_4_3_utf8_php版本html

第一步:部署編輯器前端

HTML代碼:java

1  <textarea id="editor" class="editor" type="text/plain" style="width:100%;height:500px;"></textarea>

 

JavaScript代碼:web

複製代碼
 1 $(document).ready(function () {
 2         var ue = UE.getEditor('editor',{
 3             serverUrl:'/ueditorup/unifiedRequest/',//後臺統一請求路徑
 4             autoHeightEnabled:false,
 5             toolbars:
 6                 [[
 7                 'fullscreen', 'source', '|', 'undo', 'redo', '|',
 8             'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
 9             'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
10             'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
11             'directionalityltr', 'directionalityrtl', 'indent', '|',
12             'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
13             'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
14             'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'pagebreak', 'template', 'background', '|',
15             'horizontal', 'date', 'time', 'spechars', '|',
16             'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
17             'print', 'preview', 'searchreplace', 'help', 'drafts'
18             ]],
19         });
複製代碼

 第二步:服務端整合json

前端代碼部署完,如今頁面已經能夠正常顯示百度編輯器的編輯框了,接下來就是本文要介紹的上傳功能的整合。數組

首先在CI框架的controllers目錄下建立名爲ueditorup的.php文件並在此文件建立同名的類(UeditorUp),百度編輯器的全部上傳功能都將在這個類裏實現(圖片、塗鴉、視頻,附件上傳)安全

下面代碼中的上傳處理類MyUploader 就是UEditor中的Uploader.class.php文件,這裏爲了與前端編輯器上傳功能完美銜接使用了UEditor自帶的Uploader.class.php文件而沒有使用CI框架的上傳處理功能(本人對UEditor不是很熟悉),不過爲了讓上傳更加安全,增長了上傳文件的MIME類型判斷,判斷代碼就直接來自CI框架的上傳類,配置都放在mimeconfig.php配置文件中。

而配置文件uploadconfig則是UEditor編輯器的config.json文件配置,只是把json格式改爲了CI的數組格式

UEditor編輯器個服務器交互都是經過統一請求地址進行訪問的,同時會經過GET方法提交action的值,服務器端則經過action的值判斷具體的處理方法。

複製代碼
<?php
//ueditorup.php class UeditorUp extends MY_Controller { function __construct() { parent::__construct(); } /** * 百度編輯器惟一請求接口 * @throws Exception */ public function unifiedRequest () { try { $action = $this->input->get('action'); $this->config->load('uploadconfig');//獲取上傳配置 $config = $this->config->item('ueditor_upload'); if(empty($config)) throw new Exception(errorLang('62409'));if($action == 'config') { echo json_encode($config); }elseif(method_exists($this, $action)) { $this->config->load('mimeconfig'); $config['mimeType'] = $this->config->item('mime_type_conf'); $result = $this->{$action}($config); echo json_encode($result);
        }else throw new Exception(errorLang('62409')); } catch (Exception $e) { echo json_encode(array('state'=>$e->getMessage())); } } /** * 圖片上傳處理方法 * @param array $config */ public function imageUpload ($config) { $this->load->library('MyUploader'); $config = $this->setConf($config, 'image'); $this->myuploader->do_load($config['imageFieldName'], $config); return $this->myuploader->getFileInfo(); } /** * 視頻上傳處理方法 * @param array $config */ public function videoUpload ($config) { $this->load->library('MyUploader'); $config = $this->setConf($config, 'video'); $this->myuploader->do_load($config['videoFieldName'], $config); return $this->myuploader->getFileInfo(); } /** * 附件上傳處理方法 * @param array $config */ public function filesUpload ($config) { $this->load->library('MyUploader'); $config = $this->setConf($config, 'file'); $this->myuploader->do_load($config['fileFieldName'], $config); return $this->myuploader->getFileInfo(); } /** * 塗鴉圖片上傳處理方法 * @param unknown $config */ public function scrawlUpload ($config) { $this->load->library('MyUploader'); $config = $this->setConf($config, 'scrawl', 'scrawl.png'); $this->myuploader->do_load($config['scrawlFieldName'], $config, 'base64'); return $this->myuploader->getFileInfo(); } /** * 設置config * @param array  $config * @param string $prefix * @param string $oriName * @return array */ private function setConf (array $config, $prefix, $oriName=NULL) { $config['maxSize'] = array_key_exists($prefix.'MaxSize', $config) ? $config[$prefix.'MaxSize'] : $config['fileMaxSize']; $config['allowFiles'] = array_key_exists($prefix.'AllowFiles', $config) ? $config[$prefix.'AllowFiles'] : $config['fileAllowFiles']; $config['pathFormat'] = array_key_exists($prefix.'PathFormat', $config) ? $config[$prefix.'PathFormat'] : $config['filePathFormat']; empty($oriName) || $config['oriName'] = $oriName; return $config; } }
複製代碼

下面是修改後的MyUploader上傳類的文件後綴獲取方法。

複製代碼
  /**
   * MyUploader.php * 獲取文件擴展名(MIME) * @return string */ private function getFileExt() { $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s.+)?$/'; if (function_exists('finfo_file')) { $finfo = finfo_open(FILEINFO_MIME); if (is_resource($finfo)) { $mime = @finfo_file($finfo, $this->file['tmp_name']); finfo_close($finfo); if (is_string($mime) && preg_match($regexp, $mime, $matches)) { if(array_key_exists($matches[1], $this->config['mimeType'])) { $type = $this->config['mimeType'][$matches[1]]; return $type; } } } } return FALSE; }
複製代碼

到此CI框架整合UEditor編輯器就算完成了。

*注意:在整合上傳功能的時候,要開啓文件保存目錄的讀寫權限。

 轉:

http://www.cnblogs.com/wenxiong/p/3930013.html

 


 

參考:

CI框架+Umeditor上傳圖片配置信息

(注:UMeditor是Ueditor的迷你版)

Umeditor提供了一個上傳文件通用的類Uploader.class.php, 首先將Uploader.class.php類放入CI框架的libraries目錄下改名爲Myuploader.php而後將該類提供的構造方法替換掉

原本的構造方法:

[php]  view plain  copy
 
  1. /** 
  2.     * 構造函數 
  3.     * @param string $fileField 表單名稱 
  4.     * @param array $config 配置項 
  5.     * @param bool $base64 是否解析base64編碼,可省略。若開啓,則$fileField表明的是base64編碼的字符串表單名 
  6.     */  
  7.    public function __construct($fileField, $config, $type = "upload")  
  8.    {  
  9.        $this->fileField = $fileField;  
  10.        $this->config = $config;  
  11.        $this->type = $type;  
  12.        if ($type == "remote") {  
  13.            $this->saveRemote();  
  14.        } else if($type == "base64") {  
  15.            $this->upBase64();  
  16.        } else {  
  17.            $this->upFile();  
  18.        }  
  19.   
  20.        $this->stateMap['ERROR_TYPE_NOT_ALLOWED'] = iconv('unicode', 'utf-8', $this->stateMap['ERROR_TYPE_NOT_ALLOWED']);  
  21.    }  

 

替換成:

[php]  view plain  copy
 
  1. /** 
  2.      * 構造函數 
  3.      * @param string $fileField 表單名稱 
  4.      * @param array $config  配置項 
  5.      * @param bool $base64  是否解析base64編碼,可省略。若開啓,則$fileField表明的是base64編碼的字符串表單名 
  6.      */  
  7.     public function __construct()  
  8.     {  
  9.           
  10.     }  
  11.   
  12.     public function Init($fileField , $config , $base64 = false)  
  13.     {  
  14.         /*var_dump($fileField); 
  15.         var_dump($config);exit;*/  
  16.         $this->fileField = $fileField;  
  17.         $this->config = $config;  
  18.         $this->stateInfo = $this->stateMap[ 0 ];  
  19.         $this->upFile( $base64 );  
  20.     }  



 

而後建立上傳文件的方法:

 

[php]  view plain  copy
 
  1. /*Ueditor_model*/  
  2. class Ueditor_model extends CI_Model {  
  3.   
  4.         function __construct() {  
  5.             parent::__construct();  
  6.             $this->load->library("myuploader");  
  7.         }  
  8.   
  9.         function upload_image(){  
  10.             $dir = 'source/uploads/images/ueditor_images/';  
  11.             if (!is_dir($dir)) {  
  12.                 $res = mkdir($dir, 0755, true);  
  13.             }  
  14.             //上傳配置  
  15.             $config = array(  
  16.                 "savePath" => $dir ,             //存儲文件夾  
  17.                 "maxSize" => 512,                   //容許的文件最大尺寸,單位KB  
  18.                 "allowFiles" => array( ".gif" , ".png" , ".jpg" , ".jpeg" , ".bmp" )  //容許的文件格式  
  19.             );  
  20.   
  21.             $config[ "savePath" ] = $dir;  
  22.             $this->myuploader->init("upfile", $config, $base=false);  
  23.   
  24.             $info = $this->myuploader->getFileInfo();  
  25.   
  26.             return $info;  
  27.         }  
  28.     }  
  29. /*controller*/  
  30. class Uploads_files extends CI_Controller {   
  31.     function goods_edition_upload_img() {  
  32.         $info = $this -> ueditor_model -> upload_image();  
  33.   
  34.         echo json_encode($info);  
  35.     }  
  36. }  

最後一步到umeditor.config.js中修改上傳文件方法

 

[javascript]  view plain  copy
 
    1. /** 
    2.     * 配置項主體。注意,此處全部涉及到路徑的配置別遺漏URL變量。 
    3.     */  
    4.    window.UMEDITOR_CONFIG = {  
    5.   
    6.        //爲編輯器實例添加一個路徑,這個不能被註釋  
    7.        UMEDITOR_HOME_URL : URL  
    8.   
    9.        //圖片上傳配置區  
    10.        ,imageUrl:URL + ""             <span style="white-space:pre">          </span>//圖片上傳提交地址  
    11.        ,imagePath:URL + ""                     <span style="white-space:pre"> </span>//圖片修正地址,引用了fixedImagePath,若有特殊需求,可自行配置  
    12.        ,imageFieldName:"upfile"                   <span style="white-space:pre">  </span>//圖片數據的key,若此處修改,須要在後臺對應文件修改對應參數  

 

轉:http://blog.csdn.net/demon3182/article/details/41915283

相關文章
相關標籤/搜索