사용자: 영역별 주석 처리 완료

This commit is contained in:
whitedot
2013-06-28 15:12:08 +09:00
parent d74b078ec3
commit 999371c47f
36 changed files with 592 additions and 519 deletions

View File

@ -2,6 +2,7 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<!-- 설문조사 시작 { -->
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
<form name="fpoll" action="<?php echo G4_BBS_URL ?>/poll_update.php" onsubmit="return fpoll_submit(this);" method="post">
@ -61,4 +62,5 @@ function poll_result(url)
win_poll(url);
}
</script>
</script>
<!-- } 설문조사 끝 -->

View File

@ -2,11 +2,13 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<!-- 설문조사 결과 시작 { -->
<link rel="stylesheet" href="<?php echo $poll_skin_url ?>/style.css">
<div id="poll_result" class="new_win">
<h1 id="new_win_title"><?php echo $g4['title'] ?></h1>
<!-- 설문조사 결과 그래프 시작 { -->
<section id="poll_result_list">
<h2><?php echo $po_subject ?> 결과</h2>
@ -30,7 +32,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</dd>
</dl>
</section>
<!-- } 설문조사 결과 그래프 끝 -->
<!-- 설문조사 기타의견 시작 { -->
<?php if ($is_etc) { ?>
<section id="poll_result_cmt">
<h2>이 설문에 대한 기타의견</h2>
@ -87,7 +91,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</section>
<?php } ?>
<!-- } 설문조사 기타의견 끝 -->
<!-- 설문조사 다른 결과 보기 시작 { -->
<aside id="poll_result_oth">
<h2>다른 투표 결과 보기</h2>
<ul>
@ -96,6 +102,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<?php } ?>
</ul>
</aside>
<!-- } 설문조사 다른 결과 보기 끝 -->
<div class="btn_win">
<button type="button" onclick="window.close();">창닫기</button>
@ -116,4 +123,5 @@ function fpollresult_submit(f)
return true;
}
</script>
</script>
<!-- } 설문조사 결과 끝 -->