mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 00:02:21 +09:00
확장변수 테이블에 eid 컬럼 추가 1.확장변수 추가/수정 시 대상 모듈 중 유일한 eid 로 등록하기 추가 2.다국어 게시글이 존재 시 확장변수 위치이동 안되는 오류 수정 3. 확장변수관련 추가/생성/삭제/수정/출력에 eid 정보에 대해 추가 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5922 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
46bb24295c
commit
4e2b78b6c4
21 changed files with 171 additions and 17 deletions
|
|
@ -14,6 +14,12 @@
|
|||
|
||||
<h4 class="xeAdmin">{$lang->extra_vars} {$selected_var_idx}</h4>
|
||||
<table cellspacing="0" class="crossTable ">
|
||||
<tr>
|
||||
<th><div>{$lang->eid}</div></th>
|
||||
<td class="wide">
|
||||
<input type="text" name="eid" value="{$selected_var->eid}" class="inputTypeText w200" id="eid" /><p>{$lang->about_extra_vars_eid_value}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><div>{$lang->column_name}</div></th>
|
||||
<td class="wide">
|
||||
|
|
@ -68,6 +74,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th><div>{$lang->no}</div></th>
|
||||
<th><div>{$lang->eid}</div></th>
|
||||
<th><div>{$lang->column_name}</div></th>
|
||||
<th><div>{$lang->column_type}</div></th>
|
||||
<th><div>{$lang->is_required}</div></th>
|
||||
|
|
@ -79,6 +86,7 @@
|
|||
<!--@foreach($extra_keys as $key => $val)-->
|
||||
<tr>
|
||||
<td rowspan="3">{$val->idx}</td>
|
||||
<td rowspan="3">{$val->eid}</td>
|
||||
<td class="nowrap"><b>{$val->name}</b></td>
|
||||
<td class="nowrap">{$lang->column_type_list[$val->type]}</td>
|
||||
<td rowspan="3"><!--@if($val->is_required=='Y')--><b>{$lang->is_required}</b><!--@else-->N<!--@end--></td>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
<form>
|
||||
<node target="name" required="true" />
|
||||
<node target="module_srl" required="true" />
|
||||
<node target="eid" required="true" filter="alpha_number" />
|
||||
</form>
|
||||
<parameter />
|
||||
<response callback_func="completeInsertExtraVar">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue