-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://xe-core.googlecode.com/svn/trunk@10951 201d5d3c-b55e-5fd7-737f-ddc643e51545
- Loading branch information
Showing
334 changed files
with
13,016 additions
and
5,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
/** | ||
* @file member_communication.addon.php | ||
* @author NHN ([email protected]) | ||
* @brief Promote user communication | ||
* @brief Promote user communication | ||
* | ||
* - Pop-up the message if new message comes in | ||
* - When calling MemberModel::getMemberMenu, feature to send a message is added | ||
|
@@ -46,7 +46,7 @@ | |
$mid = Context::get('cur_mid'); | ||
// Creates communication model object | ||
$oCommunicationModel = &getModel('communication'); | ||
// Add a feature to display own message box. | ||
// Add a feature to display own message box. | ||
if($logged_info->member_srl == $member_srl) { | ||
// Add your own viewing Note Template | ||
$oMemberController->addMemberPopupMenu(getUrl('','mid',$mid,'act','dispCommunicationMessages'), 'cmd_view_message_box', '', 'self'); | ||
|
@@ -55,7 +55,7 @@ | |
// If not, Add menus to send message and to add friends | ||
} else { | ||
// Get member information | ||
$oMemberModel = &getModel('member'); | ||
$oMemberModel = &getModel('member'); | ||
$target_member_info = $oMemberModel->getMemberInfoByMemberSrl($member_srl); | ||
if(!$target_member_info->member_srl) return; | ||
// Get logged-in user information | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.