사용자:게시판 읽기, 게시물 스크랩하기

This commit is contained in:
whitedot
2013-01-09 14:05:55 +09:00
parent ee0f652c79
commit adb09171f5
3 changed files with 64 additions and 57 deletions

View File

@ -20,6 +20,7 @@ caption {padding:0 0 10px;text-align:left}
.caption_desc {font-size:0.75em} .caption_desc {font-size:0.75em}
th {padding:12px 0 8px;border-top:3px solid #666;border-bottom:1px solid #a9a9a9;font-size:0.8em} th {padding:12px 0 8px;border-top:3px solid #666;border-bottom:1px solid #a9a9a9;font-size:0.8em}
th a {color:#000;text-decoration:none} th a {color:#000;text-decoration:none}
th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
td {padding:10px 0;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;font-size:0.75em} td {padding:10px 0;border-top:1px solid #d9d9d9;border-bottom:1px solid #d9d9d9;font-size:0.75em}
.empty_table {padding:50px 0;text-align:center} .empty_table {padding:50px 0;text-align:center}
@ -297,16 +298,21 @@ h6 {margin:0 0 20px}
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""} #bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {margin:0;padding:0;height:0;overflow:hidden} #bo_v_top h2 {margin:0;padding:0;height:0;overflow:hidden}
#bo_v_top ul {padding:0;list-style:none} #bo_v_top ul {padding:0;list-style:none}
#bo_v_topmy {float:left} #bo_v_my {float:left}
#bo_v_topmy li {float:left;margin-right:5px} #bo_v_my li {float:left;margin-right:5px}
#bo_v_topcom {float:right} .bo_v_com {float:right}
#bo_v_topcom li {float:left;margin-left:5px} .bo_v_com li {float:left;margin-left:5px}
#bo_view h1 {margin:0;padding:0;height:0;overflow:hidden} #bo_v_article {zoom:1}
#bo_v_bottom {zoom:1} #bo_v_article:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bottom:after {display:block;visibility:hidden;clear:both;content:""} #bo_v_article h1 {margin:0;padding:0;height:0;overflow:hidden}
#bo_v_bottom h2 {margin:0;padding:0;height:0;overflow:hidden} #bo_v_act {margin:20px 0;text-align:center}
#bo_v_bottom ul {float:right;padding:0;list-style:none} #bo_v_act a {margin-right:5px;vertical-align:top}
#bo_v_bottom li {float:left;margin-left:5px} #bo_v_act strong {color:#ff7200}
#bo_v_bot {zoom:1}
#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bot h2 {margin:0;padding:0;height:0;overflow:hidden}
#bo_v_bot ul {float:right;padding:0;list-style:none}
#bo_v_bot li {float:left;margin-left:5px}
/* 우편번호 검색 */ /* 우편번호 검색 */
#post_num dl {margin:0 auto 10px;padding:0;width:90%} #post_num dl {margin:0 auto 10px;padding:0;width:90%}
@ -357,6 +363,9 @@ h6 {margin:0 0 20px}
/* 쪽지 */ /* 쪽지 */
/* 스크랩 */ /* 스크랩 */
#scrap_do table {margin-bottom:10px}
#scrap_do textarea {height:100px}
#scrap_do p {margin:0 auto 20px;width:90%;font-size:0.875em}
/* 폼메일 */ /* 폼메일 */
#formmail textarea {height:100px} #formmail textarea {height:100px}

View File

@ -22,14 +22,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<dd><?=number_format($view['wr_hit'])?>회</dd> <dd><?=number_format($view['wr_hit'])?>회</dd>
<dt>댓글</dt> <dt>댓글</dt>
<dd><?=number_format($view['wr_comment'])?>건</dd> <dd><?=number_format($view['wr_comment'])?>건</dd>
<? if ($is_good) { ?>
<dt>추천</dt>
<dd><?=number_format($view['wr_good'])?>회</dd>
<? } ?>
<? if ($is_nogood) { ?>
<dt>비추천</dt>
<dd><?=number_format($view['wr_nogood'])?>회</dd>
<? } ?>
</dl> </dl>
</section> </section>
@ -37,31 +29,31 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<h2>게시물 상단 링크</h2> <h2>게시물 상단 링크</h2>
<!-- 링크 버튼 --> <!-- 링크 버튼 -->
<? if ($update_href || $delete_href) {?> <? if ($update_href || $delete_href) {?>
<ul id="bo_v_topmy"> <ul id="bo_v_my">
<? if ($update_href) { ?><li><a href="<?=$update_href?>" class="btn02">수정</a></li><? } ?> <? if ($update_href) { ?><li><a href="<?=$update_href?>" class="btn02">수정</a></li><? } ?>
<? if ($delete_href) { ?><li><a href="<?=$delete_href?>" class="btn02">삭제</a></li><? } ?> <? if ($delete_href) { ?><li><a href="<?=$delete_href?>" class="btn02">삭제</a></li><? } ?>
</ul> </ul>
<? } ?> <? } ?>
<ul id="bo_v_topcom">
<? <?
ob_start(); ob_start();
?> ?>
<ul class="bo_v_com">
<? if ($copy_href) { ?><li><a href="<?=$copy_href?>" class="btn03">복사</a></li><? } ?> <? if ($copy_href) { ?><li><a href="<?=$copy_href?>" class="btn03">복사</a></li><? } ?>
<? if ($move_href) { ?><li><a href="<?=$move_href?>" class="btn03">이동</a></li><? } ?> <? if ($move_href) { ?><li><a href="<?=$move_href?>" class="btn03">이동</a></li><? } ?>
<? if ($search_href) { ?><li><a href="<?=$search_href?>" class="btn02">검색</a></li><? } ?> <? if ($search_href) { ?><li><a href="<?=$search_href?>" class="btn02">검색</a></li><? } ?>
<li><a href="<?=$list_href?>" class="btn02">목록</a></li> <li><a href="<?=$list_href?>" class="btn02">목록</a></li>
<? if ($reply_href) { ?><li><a href="<?=$reply_href?>" class="btn02">답변</a></li><? } ?> <? if ($reply_href) { ?><li><a href="<?=$reply_href?>" class="btn02">답변</a></li><? } ?>
<? if ($write_href) { ?><li><a href="<?=$write_href?>" class="btn01">글쓰기</a></li><? } ?> <? if ($write_href) { ?><li><a href="<?=$write_href?>" class="btn01">글쓰기</a></li><? } ?>
</ul>
<? <?
$link_buttons = ob_get_contents(); $link_buttons = ob_get_contents();
ob_end_flush(); ob_end_flush();
?> ?>
</ul>
</aside> </aside>
<? if ($view['file'][$i]) {?> <? if ($view['file'][$i]) {?>
<section> <section id="bo_v_file">
<h2>첨부파일</h2> <h2>첨부파일</h2>
<ul> <ul>
<? <?
@ -87,7 +79,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<? } ?> <? } ?>
<? if ($view['link'][$i]) {?> <? if ($view['link'][$i]) {?>
<section> <section id="bo_v_link">
<h2>관련링크</h2> <h2>관련링크</h2>
<ul> <ul>
<? <?
@ -112,7 +104,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</section> </section>
<? } ?> <? } ?>
<article id="bo_view"> <article id="bo_v_article">
<header> <header>
<h1>본문</h1> <h1>본문</h1>
</header> </header>
@ -133,11 +125,11 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<? if ($is_signature) { ?><p><?=$signature?></p><? } ?> <? if ($is_signature) { ?><p><?=$signature?></p><? } ?>
<? if ($scrap_href || $good_href || $nogood_href) { ?> <? if ($scrap_href || $good_href || $nogood_href) { ?>
<ul> <div id="bo_v_act">
<? if ($scrap_href) { ?><li><a href="javascript:;" onclick="win_scrap('<?=$scrap_href?>');">스크랩</a></li><? } ?> <? if ($scrap_href) { ?><a href="javascript:;" class="btn02" onclick="win_scrap('<?=$scrap_href?>');">스크랩</a><? } ?>
<? if ($good_href) {?><li>추천 <?=number_format($view['wr_good'])?> <a href="<?=$good_href?>" target="hiddenframe">추천</a></li><? } ?> <? if ($good_href) {?><a href="<?=$good_href?>" class="btn02" target="hiddenframe">추천 <strong><?=number_format($view['wr_good'])?></strong></a><? } ?>
<? if ($nogood_href) {?><li>비추천 <?=number_format($view['wr_nogood'])?> <a href="<?=$nogood_href?>" target="hiddenframe">비추천</a></li><? } ?> <? if ($nogood_href) {?><a href="<?=$nogood_href?>" class="btn02" target="hiddenframe">비추천 <strong><?=number_format($view['wr_nogood'])?></strong></a><? } ?>
</ul> </div>
<? } ?> <? } ?>
</article> </article>
@ -146,17 +138,17 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once('./view_comment.php'); include_once('./view_comment.php');
?> ?>
<aside id="bo_v_bottom"> <aside id="bo_v_bot">
<h2>게시물 하단 링크</h2> <h2>게시물 하단 링크</h2>
<ul> <? if ($prev_href || $next_href) { ?>
<? if ($prev_href) { ?><li><a href="<?=$prev_href?>">이전</a></li><? } ?> <ul id="bo_v_nb">
<? if ($next_href) { ?><li><a href="<?=$next_href?>">다음</a></li><? } ?> <? if ($prev_href) { ?><li><a href="<?=$prev_href?>" class="btn02">이전</a></li><? } ?>
<? if ($next_href) { ?><li><a href="<?=$next_href?>" class="btn02">다음</a></li><? } ?>
</ul> </ul>
<? } ?>
<!-- 링크 버튼 --> <!-- 링크 버튼 -->
<ul> <?=$link_buttons?>
<?=$link_buttons?>
</ul>
</aside> </aside>
</div> </div>

View File

@ -2,28 +2,34 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?> ?>
<h1>스크랩하기</h1> <div id="scrap_do" class="new_win">
<h1>스크랩하기</h1>
<form name="f_scrap_popin" method="post" action="./scrap_popin_update.php"> <form name="f_scrap_popin" method="post" action="./scrap_popin_update.php">
<input type="hidden" name="bo_table" value="<?=$bo_table?>"> <input type="hidden" name="bo_table" value="<?=$bo_table?>">
<input type="hidden" name="wr_id" value="<?=$wr_id?>"> <input type="hidden" name="wr_id" value="<?=$wr_id?>">
<table> <table class="frm_tbl">
<caption>스크랩 확인 및 댓글 달기</caption> <caption>스크랩 확인 및 댓글 달기</caption>
<tbody> <tbody>
<tr> <tr>
<th scope="row">제목</th> <th scope="row">제목</th>
<td><?=get_text(cut_str($write[wr_subject], 255))?></td> <td><?=get_text(cut_str($write[wr_subject], 255))?></td>
</tr> </tr>
<tr> <tr>
<th scope="row"><label for="wr_content">댓글</label></th> <th scope="row"><label for="wr_content">댓글</label></th>
<td><textarea id="wr_content" name="wr_content"></textarea></td> <td><textarea id="wr_content" name="wr_content"></textarea></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</form> </form>
<div class="btn_window"> <p>
<input type="submit" value="스크랩"> 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다.
</div> </p>
<div class="btn_window">
<input type="submit" value="스크랩">
</div>
</div>