Files
firstgarden-web-gnu/plugin/ckeditor/ckeditor.lib.php
2012-12-28 14:29:48 +09:00

12 lines
487 B
PHP

<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
function editor_textarea($id, $content="", $class="")
{
global $g4;
$upload_url = $g4['path']."/plugin/ckeditor/upload.php?type=Images";
$str = "<textarea id=\"$id\" name=\"$id\" class=\"ckeditor $class\" rows=\"10\" style=\"width:100%;\">$content</textarea>\n";
//$str .= "<script> CKEDITOR.replace('$id',{ filebrowserUploadUrl : '$upload_url'}); </script>\n";
return $str;
}
?>