// $contentForm <- Æû À̸§2 // $content <- Æû ³»¿ë // $textWidth <- Æû width°ª (¼ýÀÚ¸¸ ÀÔ·Â) // $textHeight <- Æû height°ª (¼ýÀÚ¸¸ ÀÔ·Â) // $upload_image <- À̹ÌÁö ¾÷·Îµå »ç¿ë (1Àº »ç¿ë¾ÈÇÔ) // $upload_media <- ¹Ìµð¾î ¾÷·Îµå »ç¿ë (1Àº »ç¿ë¾ÈÇÔ) function myEditor($mode,$editor_Url,$formName,$contentForm,$textWidth,$textHeight,$isMobile=false){ global $content,$upload_image,$upload_media; if(empty($mode)) $mode = '1'; if(empty($editor_Url)) $editor_Url = '.'; if(empty($formName)) $formName = 'add_form'; if(empty($contentForm)) $contentForm = 'content'; $textWidth = $textWidth ? $textWidth : '100%'; $textHeight = $textHeight ? $textHeight : '200'; if($mode==1){ if($isMobile){ @include_once ($editor_Url.'/editor_mobile.html'); }else{ @include_once ($editor_Url.'/editor.html'); } } else{ ECHO ""; } } ?>