/.../modules/editor/skins/ckeditor/editor.html 파일 수정
// Define the simple toolbar.
<!--@if($editor_toolbar === 'simple')-->
settings.ckeconfig.toolbar = [
{ name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'TextColor', 'BGColor' ] },
{ name: 'paragraph', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] },
{ name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste' ] },
{ name: 'insert', items: [ 'Link', 'Image', 'Table' ] },
{ name: 'tools', items: [ 'Maximize', '-', 'Source' ] }
];
<!--@endif-->
위 내용을 아래와 같이 수정, 모바일에서 ckeditor 툴바 최적화
// Define the simple toolbar.
<!--@if($editor_toolbar === 'simple')-->
settings.ckeconfig.toolbar = [
{ name: 'styles', items: [ 'Font', 'FontSize', 'Bold', 'Italic', 'Underline', 'TextColor', 'BGColor' ] },
{ name: 'paragraph', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] },
{ name: 'insert', items: [ 'Link', 'Table' ] },
{ name: 'tools', items: [ 'Source' ] }
];
<!--@endif-->
해당 파일에서 CKEDITOR.addCss(css_content); 아래 쯤에 아래 내용 추가.
소스 편집을 관리자만 허용
<!--@if($logged_info->is_admin=='Y')-->
settings.ckeconfig.removeButtons = '';
<!--@else-->
settings.ckeconfig.removeButtons = 'Source';
<!--@endif-->