git-svn-id: http://xe-core.googlecode.com/svn/trunk@1007 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-06 06:58:46 +00:00
parent 779f84e82e
commit 7766677867
4 changed files with 19 additions and 2 deletions

View file

@ -16,4 +16,6 @@
$lang->msg_checked_poll_is_deleted = '%d개의 설문조사가 삭제되었습니다';
$lang->cmd_null_item = "설문조사로 등록할 값이 없습니다.\n다시 설정해주세요";
$lang->confirm_poll_submit = "설문조사에 응하시겠습니까?";
?>

View file

@ -1,5 +1,8 @@
<filter name="poll" module="poll" act="procPoll" confirm_msg_code="confirm_submit">
<filter name="poll" module="poll" act="procPoll" confirm_msg_code="confirm_poll_submit">
<form />
<parameter />
<response />
<response>
<tag name="error" />
<tag name="message" />
</response>
</filter>

View file

@ -1,8 +1,11 @@
<!--%import("filter/poll.xml")-->
<!--%import("js/poll.js")-->
<!--%import("css/poll.css")-->
<div class="poll_box" style="{$poll->style}">
<form action="./" method="get" onsubmit="return doPoll(this)">
<div class="poll_title_box">
<div class="poll_total_count">
{$lang->poll_total_count} : {number_format($poll->poll_count)}
@ -42,4 +45,6 @@
<input type="submit" value="{$lang->cmd_apply_poll}" class="poll_button" />
</div>
</form>
</div>

View file

@ -0,0 +1,7 @@
/* 설문 참여 함수 */
function doPoll(fo_obj) {
procFilter(fo_obj, poll);
return false;
}