175 lines
6.2 KiB
PHP
175 lines
6.2 KiB
PHP
<?php
|
|
include_once('./_common.php');
|
|
include_once(G5_EDITOR_LIB);
|
|
|
|
if($is_guest)
|
|
alert('회원이시라면 로그인 후 이용해 보십시오.', './login.php?url='.urlencode(G5_BBS_URL.'/qaview.php?qa_id='.$qa_id));
|
|
|
|
$qaconfig = get_qa_config();
|
|
|
|
$g5['title'] = $qaconfig['qa_title'];
|
|
include_once('./qahead.php');
|
|
|
|
$skin_file = $qa_skin_path.'/view.skin.php';
|
|
|
|
if(is_file($skin_file)) {
|
|
$sql = " select * from {$g5['qa_content_table']} where qa_id = '$qa_id' ";
|
|
if(!$is_admin) {
|
|
$sql .= " and mb_id = '{$member['mb_id']}' ";
|
|
}
|
|
|
|
$view = sql_fetch($sql);
|
|
|
|
if(!$view['qa_id'])
|
|
alert('게시글이 존재하지 않습니다.\\n삭제되었거나 자신의 글이 아닌 경우입니다.');
|
|
|
|
$subject_len = G5_IS_MOBILE ? $qaconfig['qa_mobile_subject_len'] : $qaconfig['qa_subject_len'];
|
|
|
|
$view['category'] = get_text($view['qa_category']);
|
|
$view['subject'] = conv_subject($view['qa_subject'], $subject_len, '…');
|
|
$view['content'] = conv_content($view['qa_content'], $view['qa_html']);
|
|
$view['name'] = get_text($view['qa_name']);
|
|
$view['datetime'] = $view['qa_datetime'];
|
|
$view['email'] = $view['qa_email'];
|
|
$view['hp'] = $view['qa_hp'];
|
|
|
|
if (trim($stx))
|
|
$view['subject'] = search_font($stx, $view['subject']);
|
|
|
|
if (trim($stx))
|
|
$view['content'] = search_font($stx, $view['content']);
|
|
|
|
// 이전글, 다음글
|
|
$sql = " select qa_id, qa_subject
|
|
from {$g5['qa_content_table']}
|
|
where qa_type = '0' ";
|
|
if(!$is_admin) {
|
|
$sql .= " and mb_id = '{$member['mb_id']}' ";
|
|
}
|
|
|
|
// 이전글
|
|
$prev_search = " and qa_num < '{$view['qa_num']}' order by qa_num desc limit 1 ";
|
|
$prev = sql_fetch($sql.$prev_search);
|
|
|
|
$prev_href = '';
|
|
if (isset($prev['qa_id']) && $prev['qa_id']) {
|
|
$prev_qa_subject = get_text(cut_str($prev['qa_subject'], 255));
|
|
$prev_href = G5_BBS_URL.'/qaview.php?qa_id='.$prev['qa_id'].$qstr;
|
|
}
|
|
|
|
// 다음글
|
|
$next_search = " and qa_num > '{$view['qa_num']}' order by qa_num asc limit 1 ";
|
|
$next = sql_fetch($sql.$next_search);
|
|
|
|
$next_href = '';
|
|
if (isset($next['qa_id']) && $next['qa_id']) {
|
|
$next_qa_subject = get_text(cut_str($next['qa_subject'], 255));
|
|
$next_href = G5_BBS_URL.'/qaview.php?qa_id='.$next['qa_id'].$qstr;
|
|
}
|
|
|
|
|
|
// 관련질문
|
|
$rows = 10;
|
|
$sql = " select *
|
|
from {$g5['qa_content_table']}
|
|
where qa_id <> '$qa_id'
|
|
and qa_related = '{$view['qa_related']}'
|
|
and qa_type = '0'
|
|
order by qa_num, qa_type
|
|
limit 0, $rows ";
|
|
$result = sql_query($sql);
|
|
|
|
$rel_list = array();
|
|
$rel_count = 0;
|
|
for($i=0; $row=sql_fetch_array($result); $i++) {
|
|
$rel_list[$i] = $row;
|
|
$rel_list[$i]['category'] = get_text($row['qa_category']);
|
|
$rel_list[$i]['subject'] = conv_subject($row['qa_subject'], $subject_len, '…');
|
|
$rel_list[$i]['name'] = get_text($row['qa_name']);
|
|
$rel_list[$i]['date'] = substr($row['qa_datetime'], 2, 8);
|
|
$rel_list[$i]['view_href'] = G5_BBS_URL.'/qaview.php?qa_id='.$row['qa_id'].$qstr;
|
|
$rel_count++;
|
|
}
|
|
$view['rel_count'] = $rel_count;
|
|
|
|
$update_href = '';
|
|
$delete_href = '';
|
|
$write_href = G5_BBS_URL.'/qawrite.php';
|
|
$rewrite_href = G5_BBS_URL.'/qawrite.php?w=r&qa_id='.$view['qa_id'];
|
|
$list_href = G5_BBS_URL.'/qalist.php'.preg_replace('/^&/', '?', $qstr);
|
|
|
|
/*
|
|
if($view['qa_type']) {
|
|
if($is_admin)
|
|
$update_href = G5_BBS_URL.'/qawrite.php?w=u&qa_id='.$view['qa_id'].$qstr;
|
|
} else {
|
|
if($view['qa_status'] == 0)
|
|
$update_href = G5_BBS_URL.'/qawrite.php?w=u&qa_id='.$view['qa_id'].$qstr;
|
|
}
|
|
*/
|
|
if(($view['qa_type'] && $is_admin) || (!$view['qa_type'] && $view['qa_status'] == 0)) {
|
|
$update_href = G5_BBS_URL.'/qawrite.php?w=u&qa_id='.$view['qa_id'].$qstr;
|
|
$delete_href = G5_BBS_URL.'/qadelete.php?qa_id='.$view['qa_id'].$qstr;
|
|
}
|
|
|
|
// 질문글이고 등록된 답변이 있다면
|
|
$answer = array();
|
|
$answer_update_href = '';
|
|
$answer_delete_href = '';
|
|
if(!$view['qa_type'] && $view['qa_status']) {
|
|
$sql = " select *
|
|
from {$g5['qa_content_table']}
|
|
where qa_type = '1'
|
|
and qa_parent = '{$view['qa_id']}' ";
|
|
$answer = sql_fetch($sql);
|
|
|
|
if($is_admin) {
|
|
$answer_update_href = G5_BBS_URL.'/qawrite.php?w=u&qa_id='.$answer['qa_id'].$qstr;
|
|
$answer_delete_href = G5_BBS_URL.'/qadelete.php?qa_id='.$answer['qa_id'].$qstr;
|
|
}
|
|
}
|
|
|
|
$stx = get_text(stripslashes($stx));
|
|
|
|
$is_dhtml_editor = false;
|
|
// 모바일에서는 DHTML 에디터 사용불가
|
|
if ($config['cf_editor'] && $qaconfig['qa_use_editor'] && !G5_IS_MOBILE) {
|
|
$is_dhtml_editor = true;
|
|
}
|
|
$editor_html = editor_html('qa_content', $content, $is_dhtml_editor);
|
|
$editor_js = '';
|
|
$editor_js .= get_editor_js('qa_content', $is_dhtml_editor);
|
|
$editor_js .= chk_editor_js('qa_content', $is_dhtml_editor);
|
|
|
|
$ss_name = 'ss_qa_view_'.$qa_id;
|
|
if(!get_session($ss_name))
|
|
set_session($ss_name, TRUE);
|
|
|
|
// 첨부파일
|
|
$view['img_file'] = array();
|
|
$view['download_href'] = array();
|
|
$view['download_source'] = array();
|
|
$view['img_count'] = 0;
|
|
$view['download_count'] = 0;
|
|
|
|
for ($i=1; $i<=2; $i++) {
|
|
if(preg_match("/\.({$config['cf_image_extension']})$/i", $view['qa_file'.$i])) {
|
|
$view['img_file'][] = '<a href="'.G5_BBS_URL.'/view_image.php?fn='.urlencode('/data/qa/'.$view['qa_file'.$i]).'" target="_blank" class="view_image"><img src="'.G5_DATA_URL.'/qa/'.$view['qa_file'.$i].'"></a>';
|
|
$view['img_count']++;
|
|
continue;
|
|
}
|
|
|
|
if ($view['qa_file'.$i]) {
|
|
$view['download_href'][] = G5_BBS_URL.'/qadownload.php?qa_id='.$view['qa_id'].'&no='.$i;
|
|
$view['download_source'][] = $view['qa_source'.$i];
|
|
$view['download_count']++;
|
|
}
|
|
}
|
|
|
|
include_once($skin_file);
|
|
} else {
|
|
echo '<div>'.str_replace(G5_PATH.'/', '', $skin_file).'이 존재하지 않습니다.</div>';
|
|
}
|
|
|
|
include_once('./qatail.php');
|
|
?>
|