|
|
|
วิธีการใช้ ckeditor และ ckfinder แบบสามารถปรับแต่งปุ่มได้ บน codeigniter |
|
|
|
|
|
|
|
วิธีการใส่นำไฟล์ไปใส่ในที่ต่างๆดูเว็บด้านล่างได้เลย
เครดิต http://meewebfree.com/site/php-codeigniter/248-setup-ckeditor-ckfinder-into-codeigniter
****
โฟลเดอร์ ckfinder ไปปรับแต่งที่ไฟล์ config.php ด้วย เพื่อให้อัพโหลดได้
config.php
function CheckAuthentication(){
return true; // หรือจะใช้ cookie หรือ session ก็แล้วแต่เพือตรวจสอบ แต่เพื่อความไว return true
}
//อีกส่วน ตำแหน่งที่จะเอาไฟล์ไปเก็บในตอนอัพโหลด แต่ละคนไม่เหมือนกัน
$baseUrl = '/code/system/assets/modules/module1/image/';
อันล่างที่ผมปรับแต่งเพิ่ม
ตัวอย่างโค้ด ส่วน Controller
<?php
class start3 extends Controller{
function index(){
$this->load->helper('url'); //โหลด helper
$this->load->library('ckeditor'); //เรียกไฟล์ ckeditor.php ใน application/libraries
$this->ckeditor->basePath = base_url(). 'system/plugins/ckeditor/'; //เรียกโฟลเดอร์ ckeditor ใน system\plugins
$this->load->library('ckfinder'); //เรียกไฟล์ ckfinder.php ใน application/libraries
$this->ckfinder->BasePath = '../system/plugins/ckfinder/'; // เรียกโฟลเดอร์ ckfinder ใน system\plugins
$this->ckfinder->SetupCKEditorObject($this->ckeditor); // ทำการสร้างปุ่มอัพโหลด ckeditor
$config = array(); //เตรียมทำการใส่ปุ่ม แล้วแต่จะใส่เท่าไหรไม่เอาก็เอาออก
$config['keep']=array(
"toolbar"=>array(
array('Source','-','Templates'),
array('Bold','Italic','Underline','Strike','-','Subscript','Superscript'),
array('NumberedList','BulletedList','-','Outdent','Indent','Blockquote'),
array('JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'),
array('Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','UIColor')
)
);
$this->load->view('show',$config); //ไปเรียกวิว
}
function show(){
echo $this->input->post('editor1'); // แสดงค่า textarea
}
}
?>
ส่วน view
<?php echo form_open('start/show'); ?> // ส่งค่าไปฟังก์ชัน start
<?=$this->ckeditor->editor("editor1","initial 5555",$keep);?> // ตัวแรกชื่อของ textarea ตัวสองข้อความที่จะใส่ในเทคแอเรีย ตัวสามค่าที่จะปรับแต่งปุ่ม
<div><input type="submit" value="Submit" /></div>
<?php echo form_close(); ?>
Tag : PHP
|
ประวัติการแก้ไข 2011-07-13 00:52:15 2011-07-13 02:28:35 2011-07-13 03:12:03 2011-07-13 03:13:18 2011-07-13 03:13:34 2011-07-13 13:27:12 2011-07-13 13:27:37 2011-07-13 13:27:55 2011-07-13 13:33:16 2011-07-13 13:33:51 2011-07-13 13:34:38 2011-07-13 13:34:58 2011-07-13 13:35:28 2011-07-13 13:41:36
|
|
|
|
|
Date :
2011-07-13 00:50:59 |
By :
bank1324 |
View :
4750 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยผมหน่อยนะครับ ไม่มีใครช่วยเลยหรอ
|
ประวัติการแก้ไข 2011-07-13 10:47:36
|
|
|
|
Date :
2011-07-13 02:29:31 |
By :
bank1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอมาทั้งคืน ใครก็ได้ที่มีโค้ดช่วยทีนะครับ ขอบคุณครับ แปะโค้ดไว้ก็ได้คับเดี๋ยวแกะเองครับ
|
ประวัติการแก้ไข 2011-07-13 10:49:24
|
|
|
|
Date :
2011-07-13 10:48:45 |
By :
bank1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ผมรอมานานจะจริงๆ ในทีสุดก้มีคนใจบุญ ขอบคุณมากครับ ผมเอาส่วนที่ทำมาโพสต์ไว้เผื่อมีคน มีปัญหาเดียวกัน
|
ประวัติการแก้ไข 2011-07-13 11:38:11 2011-07-13 13:29:17
|
|
|
|
Date :
2011-07-13 11:37:15 |
By :
bank1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Google จึก ๆ ได้เลยครับ
|
|
|
|
|
Date :
2011-07-13 11:50:13 |
By :
kalamell |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dghdfhdfh
|
|
|
|
|
Date :
2012-03-03 01:13:36 |
By :
dfg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|