mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 10:49:54 +09:00
포인트 모듈에 포인트순으로 회원목록 보기 및 개별 회원의 포인트 수정할 수 있는 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2033 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
eb9bd1d30b
commit
94bf8a08b6
11 changed files with 131 additions and 1 deletions
|
|
@ -55,5 +55,25 @@
|
|||
// 템플릿 지정
|
||||
$this->setTemplateFile('action_config');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 회원 포인트순 목록 가져오기
|
||||
**/
|
||||
function dispPointAdminPointList() {
|
||||
$oPointModel = &getModel('point');
|
||||
$args->list_count = 20;
|
||||
$args->page = Context::get('page');
|
||||
|
||||
$output = $oPointModel->getMemberList($args);
|
||||
// 템플릿에 쓰기 위해서 context::set
|
||||
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);
|
||||
|
||||
// 템플릿 지정
|
||||
$this->setTemplateFile('member_list');
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue