|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21585/root/home/queenjbs/xe/modules/poll/ |
Upload File : |
<?php
/**
* @class pollAdminModel
* @author zero (zero@nzeo.com)
* @brief poll 모듈의 admin model class
**/
class pollAdminModel extends poll {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief 설문 목록 구해옴
**/
function getPollList($args) {
$output = executeQuery('poll.getPollList', $args);
if(!$output->toBool()) return $output;
if($output->data && !is_array($output->data)) $output->data = array($output->data);
return $output;
}
/**
* @brief 설문조사의 원본을 구함
**/
function getPollAdminTarget() {
$poll_srl = Context::get('poll_srl');
$upload_target_srl = Context::get('upload_target_srl');
$oDocumentModel = &getModel('document');
$oCommentModel = &getModel('comment');
$oDocument = $oDocumentModel->getDocument($upload_target_srl);
if(!$oDocument->isExists()) $oComment = $oCommentModel->getComment($upload_target_srl);
if($oComment && $oComment->isExists()) {
$this->add('document_srl', $oComment->get('document_srl'));
$this->add('comment_srl', $oComment->get('comment_srl'));
} elseif($oDocument->isExists()) {
$this->add('document_srl', $oDocument->get('document_srl'));
} else return new Object(-1, 'msg_not_founded');
}
}
?>