mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +09:00
27 lines
515 B
PHP
27 lines
515 B
PHP
<?php
|
|
/**
|
|
* @class pollModel
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief poll 모듈의 model class
|
|
**/
|
|
|
|
class pollModel extends poll {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief 설문조사의 html데이터를 return
|
|
* 설문조사에 응하였는지에 대한 체크를 한 후 결과를 return
|
|
**/
|
|
function getPollHtml($poll_srl) {
|
|
|
|
return "SAdf";
|
|
}
|
|
|
|
|
|
}
|
|
?>
|