mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-30 07:42:11 +09:00
member모듈에서 쪽지/친구등의 커뮤니케이션 기능을 communication 모듈로 분리. member_extra_info 애드온에서 쪽지/친구와 관련된 기능을 member_communication 애드온으로 분리
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4226 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f7968229e6
commit
08cee6952c
135 changed files with 1980 additions and 1293 deletions
51
modules/communication/skins/default/send_message.html
Normal file
51
modules/communication/skins/default/send_message.html
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<!--#include("./common_header.html")-->
|
||||
<!--%import("filter/send_message.xml")-->
|
||||
<!--%import("js/member.js")-->
|
||||
|
||||
<div class="memberSmallBox w600pop">
|
||||
|
||||
<div class="header">
|
||||
<h3>{$lang->cmd_send_message}</h3>
|
||||
</div>
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, send_message)">
|
||||
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
|
||||
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />
|
||||
|
||||
<div class="complex">
|
||||
<table cellspacing="0" class="leftHeaderType">
|
||||
<col width="110" />
|
||||
<col />
|
||||
<tr>
|
||||
<th scope="row"><label for="textfield1">{$lang->receiver}</label></th>
|
||||
<td><div class="member_{$receiver_info->member_srl}">{$receiver_info->nick_name} ({$receiver_info->user_id})</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->title}</th>
|
||||
<td><input type="text" name="title" id="message_title" class="inputTypeText w300" value="{$source_message->title}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->cmd_option}</th>
|
||||
<td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="editor">
|
||||
{$editor}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="tCenter help">
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_send_message}" class="editor_button" accesskey="s" /></span>
|
||||
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
xAddEventListener(window, 'load', function() { xGetElementById("message_title").focus(); });
|
||||
</script>
|
||||
|
||||
<!--#include("./common_footer.html")-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue