mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 18:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@937 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
20a25fc031
commit
b537875f0e
5 changed files with 31 additions and 16 deletions
|
|
@ -221,6 +221,25 @@
|
|||
$this->setMessage('success_registed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 등록된 친구의 그룹 이동
|
||||
**/
|
||||
function procMemberMoveFriend() {
|
||||
// 로그인 정보 체크
|
||||
if(!Context::get('is_logged')) return new Object(-1, 'msg_not_logged');
|
||||
$logged_info = Context::get('logged_info');
|
||||
|
||||
// 변수 정리
|
||||
$args->friend_srl = Context::get('friend_srl');
|
||||
$args->member_srl = $logged_info->member_srl;
|
||||
$args->friend_group_srl = Context::get('friend_group_srl');
|
||||
|
||||
$output = executeQuery('member.moveFriend', $args);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
$this->setMessage('success_moved');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 친구 삭제
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue