mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10272 201d5d3c-b55e-5fd7-737f-ddc643e51545
101 lines
4.1 KiB
PHP
101 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* @class commentAdminView
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @brief admin view class of the comment module
|
|
**/
|
|
|
|
class commentAdminView extends comment {
|
|
|
|
/**
|
|
* @brief Initialization
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief Display the list(for administrators)
|
|
**/
|
|
function dispCommentAdminList() {
|
|
// option to get a list
|
|
$args->page = Context::get('page'); // /< Page
|
|
$args->list_count = 30; // / the number of postings to appear on a single page
|
|
$args->page_count = 5; // / the number of pages to appear on the page navigation
|
|
|
|
$args->sort_index = 'list_order'; // /< Sorting values
|
|
|
|
$args->module_srl = Context::get('module_srl');
|
|
/*
|
|
$search_target = Context::get('search_target');
|
|
$search_keyword = Context::get('search_keyword');
|
|
if ($search_target == 'is_published' && $search_keyword == 'Y')
|
|
{
|
|
$args->status = 1;
|
|
}
|
|
if ($search_target == 'is_published' && $search_keyword == 'N')
|
|
{
|
|
$args->status = 0;
|
|
}
|
|
*/
|
|
|
|
// get a list by using comment->getCommentList.
|
|
$oCommentModel = &getModel('comment');
|
|
$secretNameList = $oCommentModel->getSecretNameList();
|
|
$columnList = array('comment_srl', 'document_srl', 'is_secret', 'status', 'content', 'comments.member_srl', 'comments.nick_name', 'comments.regdate', 'ipaddress');
|
|
$output = $oCommentModel->getTotalCommentList($args, $columnList);
|
|
|
|
$oCommentModel = &getModel("comment");
|
|
$modules = $oCommentModel->getDistinctModules();
|
|
$modules_list = $modules;
|
|
|
|
// set values in the return object of comment_model:: getTotalCommentList() in order to use a template.
|
|
Context::set('total_count', $output->total_count);
|
|
Context::set('total_page', $output->total_page);
|
|
Context::set('page', $output->page);
|
|
Context::set('comment_list', $output->data);
|
|
Context::set('modules_list', $modules_list);
|
|
Context::set('page_navigation', $output->page_navigation);
|
|
Context::set('secret_name_list', $secretNameList);
|
|
// set the template
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('comment_list');
|
|
}
|
|
|
|
/**
|
|
* @brief show the blacklist of comments in the admin page
|
|
**/
|
|
function dispCommentAdminDeclared() {
|
|
// option to get a blacklist
|
|
$args->page = Context::get('page'); // /< Page
|
|
$args->list_count = 30; // /< the number of comment postings to appear on a single page
|
|
$args->page_count = 10; // /< the number of pages to appear on the page navigation
|
|
|
|
$args->sort_index = 'comment_declared.declared_count'; // /< sorting values
|
|
$args->order_type = 'desc'; // /< sorted value
|
|
|
|
// get a list
|
|
$declared_output = executeQuery('comment.getDeclaredList', $args);
|
|
|
|
if($declared_output->data && count($declared_output->data)) {
|
|
$comment_list = array();
|
|
|
|
$oCommentModel = &getModel('comment');
|
|
foreach($declared_output->data as $key => $comment) {
|
|
$comment_list[$key] = new commentItem();
|
|
$comment_list[$key]->setAttribute($comment);
|
|
}
|
|
$declared_output->data = $comment_list;
|
|
}
|
|
|
|
// set values in the return object of comment_model:: getCommentList() in order to use a template.
|
|
Context::set('total_count', $declared_output->total_count);
|
|
Context::set('total_page', $declared_output->total_page);
|
|
Context::set('page', $declared_output->page);
|
|
Context::set('comment_list', $declared_output->data);
|
|
Context::set('page_navigation', $declared_output->page_navigation);
|
|
// set the template
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
$this->setTemplateFile('declared_list');
|
|
}
|
|
}
|
|
?>
|