mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 00:59:58 +09:00
#464 쪽지 수신 여부를 쪽지함에서 보이도록 하고 커뮤니케이션 애드온 비활성화시 개인의 쪽지함/친구함이 보이지 않도록 처리
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4160 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e6a19417ff
commit
602bbe80e8
10 changed files with 57 additions and 19 deletions
|
|
@ -87,6 +87,7 @@
|
|||
.readMessage .messageHeader address .date { font:.8em Tahoma; color:#999999; margin-left:10px;}
|
||||
.readMessage .messageBody { border:1px solid #e0e1db; margin:0 1.5em 1.5em 1.5em; padding:1em; color:#666666;}
|
||||
.readMessage .deleteOrKeep { padding:.5em 0; overflow:hidden; background:#f5f5f3; border-top:1px solid #eaebe7; _width:100%;}
|
||||
.messageSetup { float:left; overflow:hidden; }
|
||||
.instantMessage { float:right; overflow:hidden;}
|
||||
.instantMessage li { float:left; padding:0 .8em 0 .8em; margin-left:-1px; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left center; list-style:none; }
|
||||
.instantMessage li a { text-decoration:none; display:block; float:left; height:1em; height:1.1em; overflow:hidden; font-size:1em; white-space:nowrap; color:#666666; padding-left:1.8em; background:url(../images/common/iconInstantMessage.gif) no-repeat left top;}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
<param name="blog" target="blog" />
|
||||
<param name="birthday" target="birthday" />
|
||||
<param name="allow_mailing" target="allow_mailing" />
|
||||
<param name="allow_message" target="allow_message" />
|
||||
<param name="email_address" target="email_address" />
|
||||
<param name="signature" target="signature" />
|
||||
</parameter>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
<filter name="update_allow_message" module="member" act="procMemberUpdateAllowMessage">
|
||||
<form />
|
||||
<parameter />
|
||||
<response />
|
||||
</filter>
|
||||
|
|
@ -5,6 +5,7 @@
|
|||
<!--@end-->
|
||||
<!--#include("./common_header.html")-->
|
||||
<!--%import("filter/delete_checked_message.xml")-->
|
||||
<!--%import("filter/update_allow_message.xml")-->
|
||||
|
||||
<!--@if($message)-->
|
||||
<div class="readMessage">
|
||||
|
|
@ -37,6 +38,16 @@
|
|||
<!--@end-->
|
||||
|
||||
<div class="boardInformation">
|
||||
<div class="messageSetup">
|
||||
<form action="./" method="POST" onsubmit="return procFilter(this, update_allow_message)">
|
||||
<select name="allow_message">
|
||||
<!--@foreach($lang->allow_message_type as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($logged_info->allow_message == $key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_save}"></span>
|
||||
</form>
|
||||
</div>
|
||||
<ul class="instantMessage">
|
||||
<!--@foreach($lang->message_box as $key => $val)-->
|
||||
<!--@if($key == $message_type)-->
|
||||
|
|
|
|||
|
|
@ -135,17 +135,6 @@
|
|||
<th scope="row">{$lang->allow_mailing}</th>
|
||||
<td><input type="checkbox" name="allow_mailing" value="Y" class="checkbox" <!--@if($member_info->allow_mailing!='N')-->checked="checked"<!--@end--> /> <p>{$lang->about_allow_mailing}</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->allow_message}</th>
|
||||
<td>
|
||||
<select name="allow_message">
|
||||
<!--@foreach($lang->allow_message_type as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($member_info->allow_message == $key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<p>{$lang->about_allow_message}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->signature}</th>
|
||||
<td>{$editor}</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue