issue 2662 poll, rss

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12257 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2012-11-20 01:25:09 +00:00
parent 580222822a
commit ca9a828954
12 changed files with 1536 additions and 1408 deletions

View file

@ -1,61 +1,67 @@
<?php
/**
* @class pollAdminModel
* @author NHN (developers@xpressengine.com)
* @brief The admin model class of the poll module
**/
/**
* @class pollAdminModel
* @author NHN (developers@xpressengine.com)
* @brief The admin model class of the poll module
*/
class pollAdminModel extends poll
{
/**
* @brief Initialization
*/
function init()
{
}
class pollAdminModel extends poll {
/**
* @brief Get the list of polls
*/
function getPollList($args)
{
$output = executeQueryArray('poll.getPollList', $args);
if(!$output->toBool()) return $output;
/**
* @brief Initialization
**/
function init() {
}
//if($output->data && !is_array($output->data)) $output->data = array($output->data);
return $output;
}
/**
* @brief Get the list of polls
**/
function getPollList($args) {
$output = executeQueryArray('poll.getPollList', $args);
if(!$output->toBool()) return $output;
/**
* @brief Get the list of polls with member info
*/
function getPollListWithMember($args)
{
$output = executeQueryArray('poll.getPollListWithMember', $args);
if(!$output->toBool()) return $output;
//if($output->data && !is_array($output->data)) $output->data = array($output->data);
return $output;
}
return $output;
}
/**
* @brief Get the list of polls with member info
**/
function getPollListWithMember($args)
/**
* @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())
{
$output = executeQueryArray('poll.getPollListWithMember', $args);
if(!$output->toBool()) return $output;
return $output;
$this->add('document_srl', $oComment->get('document_srl'));
$this->add('comment_srl', $oComment->get('comment_srl'));
}
/**
* @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 return new Object(-1, 'msg_not_founded');
}
}
?>
elseif($oDocument->isExists())
{
$this->add('document_srl', $oDocument->get('document_srl'));
}
else return new Object(-1, 'msg_not_founded');
}
}
/* End of file poll.admin.model.php */
/* Location: ./modules/poll/poll.admin.model.php */