session_start();
if(!$_REQUEST['class']) {
echo "";
exit;
}
if(!$connectionID) {
include "$_SERVER[DOCUMENT_ROOT]/cgi/lib/main_conf.inc";
// db연결
$connectionID = $dbapi->dbConnect();
}
// 게시판설정파일
include "$_SERVER[DOCUMENT_ROOT]/cgi/board/lib/board_conf.inc";
if($bdf_nm_write == "F") {
if(!$_USER_NO) {
if($type == "write" && ($action == "insert" || $action == "reply")) {
$userapi->errorMsg("비회원/준회원은 글을 등록시킬 수 없습니다.");
}
}
}
if($bdf_nm_view == "F") {
if(!$_USER_NO) {
if($type == "view") {
$userapi->errorMsg("비회원/준회원은 글을 보실 수 없습니다.");
}
}
}
// default 이미지 경로
$img_path = "/cgi/board/images";
if($class == "notice2") $img_path2 = "/notice/img";
else $img_path2 = "/bbs/img";
// 기본경로
$b_path = "/cgi/board";
// 파일다운/업 경로
$upfile_path = $_SERVER[DOCUMENT_ROOT].$b_path."/upload/{$class}";
$upfile_path2 = $b_path."/upload/{$class}";
// 테이블명
$table = "board_rw";
// 게시판 기본색상
$board_bgcolor = "#{$bdf_bgcolor}";
// 상단 html
if($bdf_up_include)
include $_SERVER[DOCUMENT_ROOT].$bdf_up_include;
else {
echo $bdf_up_html;
}
echo "";
// file include
if($bdf_type == "3") $type = "write".$bdf_type; // 온라인문의사항이면 무조건 쓰기만
elseif($bdf_type == "13") {
if(!$category_nb) include "$_SERVER[DOCUMENT_ROOT]/cgi/goods/lib/shop_conf.inc";
if(!$type) $type = "list";
if($type != "password_write") $n = $bdf_type;
}
else {
if(!$type) $type = "list";
if($type != "password_write") {
if($bdf_type == "1" || $bdf_type == "2" || $bdf_type == "4") { // 공지사항류, 문의게시판류, 사진갤러리류
$n = "";
}
else {
$n = $bdf_type;
if($bdf_type == 12) $goods_upfile_path2 = "/cgi/goods/upload"; // 이용후기/상품문의시
}
}
}
// 게시판이 영어게시판이면
$e_class = substr($class, 0, 2);
if($e_class == "e_" || $e_class == "c_") $site_lang_gb = "e_";
include $_SERVER[DOCUMENT_ROOT].$b_path."/{$site_lang_gb}{$type}{$n}.html";
// 하단 html
if($bdf_down_include)
include $_SERVER[DOCUMENT_ROOT].$bdf_down_include;
else {
echo $bdf_down_html;
}
// db disconnect
$dbapi->dbDisconnect($connectionID);
?>