FCKeditor 호출을 위한 함수를 정의하고 CODE 호출을 용이하게 하기 위해 PHP에서 함수로 작성합니다
.
//FCKeditor를 호출하는 함수 정의
함수 call_fck($input_name,$input_value,$w='780',$h='580')
{
include_once 'fckeditor/fckeditor.php';
$fcked = 새로운 FCKeditor($input_name);
$fcked->BasePath = 'fckeditor/';
$fcked->ToolbarSet = 'Simple' ; //툴바 설정
$fcked->InstanceName = $input_name;
$fcked->너비 = $w;
$fcked->높이 = $h;
$fcked->값 = $input_value;
$fck_area = $fcked->CreateHtml();
$this->smarty->할당('fck_area',$fck_area);
설정 해제($fck_area) ;
설정 해제($fcked) ;
}