mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
- 트리거 등 반환값이 필요하지 않은 곳에서 new BaseObject()를 반환하는 것 삭제 - 모듈 설치, 업데이트 후 무의미한 new BaseObject()를 반환하는 것 삭제 - 사용자에게 에러 메시지를 돌려주는 용도로 new BaseObject(-1, '에러메시지')를 사용하는 경우는 대부분 $this->setError()로 변경함. 언어 변환과 sprintf() 처리까지 한 번에 이루어지므로 이쪽이 더 편리함.
71 lines
1.6 KiB
PHP
71 lines
1.6 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class pollAdminModel
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief The admin model class of the poll module
|
|
*/
|
|
class pollAdminModel extends poll
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Get the list of polls
|
|
*/
|
|
function getPollList($args)
|
|
{
|
|
$output = executeQueryArray('poll.getPollList', $args);
|
|
if(!$output->toBool()) return $output;
|
|
|
|
//if($output->data && !is_array($output->data)) $output->data = array($output->data);
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @brief Get the list of polls with member info
|
|
*/
|
|
function getPollListWithMember($args)
|
|
{
|
|
$output = executeQueryArray('poll.getPollListWithMember', $args);
|
|
if(!$output->toBool()) return $output;
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @brief Get the original poll
|
|
*/
|
|
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
|
|
{
|
|
$this->setError('msg_not_founded');
|
|
}
|
|
}
|
|
}
|
|
/* End of file poll.admin.model.php */
|
|
/* Location: ./modules/poll/poll.admin.model.php */
|