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@929 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
97cc64a9dc
commit
5460c0a765
5 changed files with 51 additions and 0 deletions
|
|
@ -92,6 +92,23 @@
|
|||
$this->setMessage('success_sended');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 특정 쪽지를 보관함으로 보냄
|
||||
**/
|
||||
function procMemberStoreMessage($message_srl) {
|
||||
// 로그인 정보 체크
|
||||
if(!Context::get('is_logged')) return new Object(-1, 'msg_not_logged');
|
||||
$logged_info = Context::get('logged_info');
|
||||
|
||||
$args->message_srl = $message_srl;
|
||||
$args->member_srl = $logged_info->member_srl;
|
||||
$output = executeQuery('member.setMessageStored', $args);
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
$this->setMessage('success_registed');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief 쪽지 삭제
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue