mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
기본 정보를 제외한 추가 항목에 대해 회원 정보/비공개 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3695 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
354a48d7b0
commit
530b41c31b
16 changed files with 126 additions and 34 deletions
7
modules/member/tpl/css/member_admin.css
Normal file
7
modules/member/tpl/css/member_admin.css
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.publicItem { display:block; margin-top:5px;}
|
||||
.publicItem input { margin:0; padding:0;}
|
||||
.publicItem label { font-weight:normal; margin:0; padding:0; color:#666666;}
|
||||
span.publicItem { display:inline; margin:0; font-weight:normal; color:#666666; }
|
||||
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("filter/insert.xml")-->
|
||||
<!--%import("css/member_admin.css")-->
|
||||
|
||||
<form id="fo_insert_member" action="./" method="get" onsubmit="return procFilter(this, insert)">
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
|
|
@ -150,10 +151,12 @@
|
|||
<!--@if($val->is_active=='Y')-->
|
||||
<tr>
|
||||
<th scope="row">
|
||||
<!--@if($val->required=='Y')-->
|
||||
*
|
||||
<!--@end-->
|
||||
{$val->column_title}
|
||||
{htmlspecialchars($val->column_title)}
|
||||
<!--@if($val->required=='Y')-->*<!--@end-->
|
||||
<div class="publicItem">
|
||||
<input type="checkbox" class="checkbox" name="open_{$val->column_name}" <!--@if($val->is_opened)-->checked="checked"<!--@end--> value="Y" id="open_{$val->column_name}" />
|
||||
<label for="open_{$val->column_name}">{$lang->public}</label>
|
||||
</div>
|
||||
</th>
|
||||
<td>
|
||||
<!-- 일반 text -->
|
||||
|
|
|
|||
|
|
@ -59,9 +59,7 @@ function completeMemberCheckValue(ret_obj, response_tags, e) {
|
|||
if(! (dummy = xGetElementById(dummy_id)) ) {
|
||||
dummy = xCreateElement('DIV');
|
||||
dummy.id = dummy_id;
|
||||
dummy.style.display = "none";
|
||||
dummy.style.clear = 'both';
|
||||
dummy.style.marginTop = '10px';
|
||||
dummy.className = "checkValue";
|
||||
obj.parentNode.insertBefore(dummy, obj.lastChild);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@
|
|||
<!--@if($extend_form_list)-->
|
||||
<!--@foreach($extend_form_list as $key => $val)-->
|
||||
<tr>
|
||||
<th scope="row">{htmlspecialchars($val->column_title)}</th>
|
||||
<th scope="row">{htmlspecialchars($val->column_title)}<!--@if($val->is_opened)--> <span class="publicItem">({$lang->public})</span><!--@end--></th>
|
||||
<td>
|
||||
<!--@if($val->column_type=='tel')-->
|
||||
{htmlspecialchars($val->value[0])}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue