회원 포인트 목록에 모든 회원 출력 및 검색 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2642 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
k10206 2007-09-21 02:37:48 +00:00
parent d991c11ac2
commit c6825dda59
3 changed files with 47 additions and 8 deletions

View file

@ -71,6 +71,13 @@
Context::set('member_list', $output->data);
Context::set('page_navigation', $output->page_navigation);
// 멤버모델 객체 생성
$oMemberModel = &getModel('member');
// group 목록 가져오기
$this->group_list = $oMemberModel->getGroups();
Context::set('group_list', $this->group_list);
// 템플릿 지정
$this->setTemplateFile('member_list');
}