ckeditor 간단 모드에 설문조사 아이콘을 표시하는 팁에 대해 문의드립니다.
CMS/프레임워크 | Rhymix 2.1 |
---|---|
개발 언어 | PHP 7.2 |
사용중인 에디터 간단모드에서 아이콘입니다.
아래 기본 모드의 설문 조사 아이콘을 간단모드에 표시를 하려고 합니다.
관련되는 팁( https://xetown.com/questions/1727580 )의 댓글 ( https://xetown.com/questions/1727580#comment_1727816 )에 아래와 같은 내용이 있는데 첨부된 파일 다운로드가 되질 않는데요.
댓글 내용 중 첨부파일 config.js 파일 내용을 혹시 좀 알려주실 분 계신가요?
아니면 현재 라이믹스 코어에서 이 팁을 적용( 매번 업데이트시마다 변경해야 하지만) 하는 방법 혹시 아시는 분 계시면 도움 부탁드립니다.
마트몬
Lv. 8
댓글 4
2.1.19 라이믹스 기준
위치: modules/editor/skins/ckeditor/js/editor.js 99행 부근
if (config.toolbar === 'simple') {
settings.ckeconfig.toolbar = [
{ name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'Strike', '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' ] }
];
}
위 부분 코드 블럭 내부 밑에쯤 { name: 'xe_component', items: [ 'poll_maker'] } 를 추가하여 다음과 같이 수정
if (config.toolbar === 'simple') {
settings.ckeconfig.toolbar = [
{ name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'Strike', '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' ] },
{ name: 'xe_component', items: [ 'poll_maker'] }
];
}
감사합니다.^^
라이믹스를 git등으로 내려받아 업데이트 할 때에도 업데이트에 구애를 받지 않을것으로 보입니다.
댓글에 첨부된 예제 config.js 다운로드 링크가 깨져서 우선 임시로 사용해야 겠습니다.
답변감사합니다.