#174 설문조사 결과 보기 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2733 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-10-11 01:33:03 +00:00
parent ece48de14e
commit e4d55fc4d1
10 changed files with 80 additions and 2 deletions

View file

@ -190,5 +190,18 @@
$this->add('tpl',$tpl);
$this->setMessage('success_poll');
}
/**
* @brief 결과 미리 보기
**/
function procPollViewResult() {
$poll_srl = Context::get('poll_srl');
$oPollModel = &getModel('poll');
$tpl = $oPollModel->getPollResultHtml($poll_srl);
$this->add('poll_srl', $poll_srl);
$this->add('tpl',$tpl);
}
}
?>