mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@941 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ca41a2309b
commit
a63109db8e
9 changed files with 55 additions and 8 deletions
|
|
@ -323,9 +323,27 @@
|
|||
if($member_info->member_srl != $target_srl) return $this->stop('msg_invalid_request');
|
||||
Context::set('target_info', $member_info);
|
||||
|
||||
// 그룹의 목록을 구함
|
||||
$friend_group_list = $oMemberModel->getFriendGroups();
|
||||
Context::set('friend_group_list', $friend_group_list);
|
||||
|
||||
$this->setTemplateFile('add_friend');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 친구 그룹 추가
|
||||
**/
|
||||
function dispMemberAddFriendGroup() {
|
||||
$this->initNormal();
|
||||
$this->setLayoutFile("popup_layout");
|
||||
|
||||
// 로그인이 되어 있지 않으면 오류 표시
|
||||
if(!Context::get('is_logged')) return $this->stop('msg_not_logged');
|
||||
$logged_info = Context::get('logged_info');
|
||||
|
||||
$this->setTemplateFile('add_friend_group');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 회원 목록 출력
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue