 |
|
ตรงไฟล์ config.js
ผมเพิ่ม config.extraPlugins = 'syntaxhighlight'; ลงไปแล้วครับ
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For complete reference see:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
// The toolbar groups arrangement, optimized for a single toolbar row.
config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'forms' },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'tools' },
{ name: 'others' },
{ name: 'about' }
];
// The default plugins included in the basic setup define some buttons that
// are not needed in a basic editor. They are removed here.
config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript';
// Dialog windows are also simplified.
config.removeDialogTabs = 'link:advanced';
config.extraPlugins = 'syntaxhighlight';
};
ตรงแสดงผล
view.php
<textarea name="viewborad" id="description">
<?php echo nl2br($item['description']);?>
</textarea>
<!-- <script src="/static/prismjs/prism.js"></script> -->
<script>
CKEDITOR.replace( 'viewborad', {
customConfig: 'config.js'
});
</script>
ผลออกมาก็ไม่ได้เช่นเดิมอ่ะครับ
|
 |
 |
 |
 |
Date :
2015-01-06 09:56:07 |
By :
bamossza |
|
 |
 |
 |
 |
|
|
 |