<html>
<head>
<?php
// ckeditor 경로 설정
include_once './manager/ckeditor/ckeditor.php'; //ckeditor.php가 설치된 경로
// ckfinder 경로 설정
include_once './manager/ckfinder/ckfinder.php';//ckfinder.php가 설치된 경로
// ckEditor 객체 생성
$ckeditor = new CKEditor();
// 경로 지정
$ckeditor->basePath = '/manager/ckeditor/'; //CKEditor 설치경로
$ckeditor->config['width'] = '100%'; //세로조절
$ckeditor->config['height'] = '500'; //가로조절
$ckeditor->config['skin'] = 'kama'; //스킨
$config['toolbar'] = array(
array('Undo','Redo','Source'),
array('Bold','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
array('FontName','FontSize'),
array('TextColor','BGColor'),
array('Link','Image','Table')
/* Toolbar 모음 구FCKEDITOR에서 참조-_-+
array('Source','DocProps','-','Save','NewPage','Preview','-','Templates'),
array('Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'),
array('Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'),
array('Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'),
array('OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'),
array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
array('Link','Unlink','Anchor'),
array('Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'),
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('FitWindow','ShowBlocks','-','About')
*/
);
// ckeditor 객체와 ckfinder의 경로를 이용하여 ckfinder를 ckeditor에 포함시킨다.
// 소스코드를 보시면 더욱 자세한 내용을 알 수 있습니다.
CKFinder::SetupCKEditor($ckeditor, '/manager/ckfinder/'); //파일업로드 되게 도와주는 함수 CKFinder가 설치된경로에 맞게 맞춰줄것!
echo $ckeditor->editor("wr_content", <?=rs[wr_content]?>, $config); // "textarea 이름및아이디", "콘텐츠내용","각종컨피그적용 나같은 경우 툴바적용__;"
?>
</head>
<body>
우후훗-_-v
</body>
</html>
아.. 에디터 적용하기 정말 힘드네요 -_-; FCKEDITOR 잘쓰고 있었는데.. 업뎃이 안되다니 비러머글 ㅠㅠ 웹사이트 참조해가면서 나에게 맞게 바꿈... 바뀐게 없기도 한거
같고;;;
나중에 또 적용할려면 해매겟지..-_-;