mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-12 13:32:16 +09:00
issue 46 Validator apply communication module.
standalone method apply validator. Auto Form generation error in Template engine is fixed git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8482 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
11815412dc
commit
8f7335c776
24 changed files with 141 additions and 41 deletions
|
|
@ -3,7 +3,9 @@
|
|||
<!--%import("filter/update_allow_message.xml")-->
|
||||
|
||||
<div class="xeMessages">
|
||||
<form action="./" method="POST" onsubmit="return procFilter(this, update_allow_message)" class="setupMessage">
|
||||
<form action="./" method="POST" class="setupMessage">
|
||||
<input type="hidden" name="act" value="procCommunicationUpdateAllowMessage" />
|
||||
<input type="hidden" name="message_type" value="{$message_type}" />
|
||||
<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>
|
||||
|
|
@ -42,7 +44,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="button">
|
||||
<th class="button">this
|
||||
<!--@if($message->message_type != "S" && $message->member_srl != $logged_info->member_srl)-->
|
||||
<a href="#" onclick="doSendMessage('{$message->sender_srl}','{$message->message_srl}');return false;" class="button black strong"><span>{$lang->cmd_reply_message}</span></a>
|
||||
<!--@end-->
|
||||
|
|
@ -55,7 +57,9 @@
|
|||
</table>
|
||||
<!--@end-->
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_checked_message)" id="fo_message_list">
|
||||
|
||||
<form action="./" method="get" id="fo_message_list">
|
||||
<input type="hidden" name="act" value="procCommunicationDeleteMessages" />
|
||||
<input type="hidden" name="message_type" value="{$message_type}" />
|
||||
|
||||
<table cellspacing="0" class="rowTable">
|
||||
|
|
@ -80,7 +84,7 @@
|
|||
<!--@foreach($message_list as $no => $val)-->
|
||||
<tr>
|
||||
<td class="wide">
|
||||
<input name="message_srl_list" type="checkbox" value="{$val->message_srl}" />
|
||||
<input name="message_srl_list[]" type="checkbox" value="{$val->message_srl}" />
|
||||
<!--@if($val->readed=='Y')-->
|
||||
<a href="{getUrl('message_srl',$val->message_srl)}">{$val->title}</a>
|
||||
<!--@else-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue