mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 16:19:58 +09:00
issue 46 validator apply to member module
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8512 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6683636782
commit
ee58f755a8
20 changed files with 194 additions and 66 deletions
|
|
@ -1,19 +1,16 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--@if($member_info->member_srl)-->
|
||||
<!--%import("filter/update_member.xml")-->
|
||||
<!--@else-->
|
||||
<!--%import("filter/insert.xml")-->
|
||||
<!--@endif-->
|
||||
<!--%import("css/member_admin.css")-->
|
||||
|
||||
<!--// datepicker javascript plugin load -->
|
||||
<!--%load_js_plugin("ui.datepicker")-->
|
||||
<!--%load_js_plugin("filebox")-->
|
||||
|
||||
<form id="fo_insert_member" action="./" method="get" onsubmit="return procFilter(this, insert)">
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="member_srl" value="{$member_info->member_srl}" />
|
||||
<input type="hidden" name="signature" value="{htmlspecialchars($member_info->signature)}" />
|
||||
<p class="xe_validator_error">{$XE_VALIDATOR_ERROR}</p>
|
||||
<form id="fo_insert_member" action="./" method="post">
|
||||
<input type="hidden" name="act" value="procMemberAdminInsert" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="member_srl" value="{$member_info->member_srl}" />
|
||||
<input type="hidden" name="signature" value="{htmlspecialchars($member_info->signature)}" />
|
||||
<!--@if($member_info->member_srl)-->
|
||||
<input type="hidden" name="user_id" value="{htmlspecialchars($member_info->user_id)}" />
|
||||
<!--@end-->
|
||||
|
|
@ -26,6 +23,7 @@
|
|||
<td class="wide">
|
||||
<!--@if($member_info->member_srl)-->
|
||||
{htmlspecialchars($member_info->user_id)}
|
||||
<input type="hidden" name="user_id" value="{$member_info->user_id}" class="inputTypeText" />
|
||||
<!--@else-->
|
||||
<input type="text" name="user_id" value="" class="inputTypeText" />
|
||||
<p>{$lang->about_user_id}</p>
|
||||
|
|
@ -139,7 +137,7 @@
|
|||
<th scope="row"><div>{$lang->group}</div></th>
|
||||
<td>
|
||||
<!--@foreach($group_list as $key=>$val)-->
|
||||
<input type="checkbox" name="group_srl_list" value="{$key}" id="group_{$key}" <!--@if($member_info->group_list[$key])-->checked="checked"<!--@end--> class="checkbox" />
|
||||
<input type="checkbox" name="group_srl_list[]" value="{$key}" id="group_{$key}" <!--@if($member_info->group_list[$key])-->checked="checked"<!--@end--> class="checkbox" />
|
||||
<label for="group_{$key}">{$val->title}</label>
|
||||
<!--@end-->
|
||||
<p>{$lang->about_group}</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue