mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
126 lines
3.5 KiB
PHP
126 lines
3.5 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class pointAdminView
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief The admin view class of the point module
|
|
*/
|
|
class pointAdminView extends point
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
// Get teh configuration information
|
|
$oModuleModel = getModel('module');
|
|
$config = $oModuleModel->getModuleConfig('point');
|
|
// Set the configuration variable
|
|
Context::set('config', $config);
|
|
|
|
//Security
|
|
$security = new Security();
|
|
$security->encodeHTML('config.point_name','config.level_icon');
|
|
$security->encodeHTML('module_info..');
|
|
|
|
// Set the template path
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief Default configurations
|
|
*/
|
|
function dispPointAdminConfig()
|
|
{
|
|
// Get the list of level icons
|
|
$level_icon_list = FileHandler::readDir("./modules/point/icons");
|
|
Context::set('level_icon_list', $level_icon_list);
|
|
// Get the list of groups
|
|
$oMemberModel = getModel('member');
|
|
$group_list = $oMemberModel->getGroups();
|
|
$selected_group_list = array();
|
|
if(count($group_list))
|
|
{
|
|
foreach($group_list as $key => $val)
|
|
{
|
|
$selected_group_list[$key] = $val;
|
|
}
|
|
}
|
|
Context::set('group_list', $selected_group_list);
|
|
//Security
|
|
$security = new Security();
|
|
$security->encodeHTML('group_list..title','group_list..description');
|
|
|
|
// Set the template
|
|
$this->setTemplateFile('config');
|
|
}
|
|
|
|
/**
|
|
* @brief Set per-module scores
|
|
*/
|
|
function dispPointAdminModuleConfig()
|
|
{
|
|
// Get a list of mid
|
|
$oModuleModel = getModel('module');
|
|
$columnList = array('module_srl', 'mid', 'browser_title');
|
|
$mid_list = $oModuleModel->getMidList(null, $columnList);
|
|
Context::set('mid_list', $mid_list);
|
|
|
|
Context::set('module_config', $oModuleModel->getModulePartConfigs('point'));
|
|
//Security
|
|
$security = new Security();
|
|
$security->encodeHTML('mid_list..browser_title','mid_list..mid');
|
|
|
|
// Set the template
|
|
$this->setTemplateFile('module_config');
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the functional act
|
|
*/
|
|
function dispPointAdminActConfig()
|
|
{
|
|
// Set the template
|
|
$this->setTemplateFile('action_config');
|
|
}
|
|
|
|
/**
|
|
* @brief Get a list of member points
|
|
*/
|
|
function dispPointAdminPointList()
|
|
{
|
|
$oPointModel = getModel('point');
|
|
|
|
$args = new stdClass();
|
|
$args->list_count = 20;
|
|
$args->page = Context::get('page');
|
|
|
|
$oMemberModel = getModel('member');
|
|
$memberConfig = $oMemberModel->getMemberConfig();
|
|
|
|
Context::set('identifier', $memberConfig->identifier);
|
|
|
|
$columnList = array('member.member_srl', 'member.user_id', 'member.email_address', 'member.nick_name', 'point.point');
|
|
$output = $oPointModel->getMemberList($args, $columnList);
|
|
// context::set for writing into a template
|
|
Context::set('total_count', $output->total_count);
|
|
Context::set('total_page', $output->total_page);
|
|
Context::set('page', $output->page);
|
|
Context::set('member_list', $output->data);
|
|
Context::set('page_navigation', $output->page_navigation);
|
|
// Create a member model object
|
|
$oMemberModel = getModel('member');
|
|
// Get a list of groups
|
|
$this->group_list = $oMemberModel->getGroups();
|
|
Context::set('group_list', $this->group_list);
|
|
//Security
|
|
$security = new Security();
|
|
$security->encodeHTML('group_list..title','group_list..description');
|
|
$security->encodeHTML('member_list..');
|
|
|
|
// Set the template
|
|
$this->setTemplateFile('member_list');
|
|
}
|
|
}
|
|
/* End of file point.admin.view.php */
|
|
/* Location: ./modules/point/point.admin.view.php */
|