mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
issue 70 data migration management modified.
but UI not completed. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8717 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c47f24b566
commit
a63723c0b9
2 changed files with 27 additions and 39 deletions
|
|
@ -3,7 +3,7 @@
|
|||
<grants />
|
||||
<permissions />
|
||||
<actions>
|
||||
<action name="dispImporterAdminContent" type="view" standalone="true" admin_index="true" />
|
||||
<action name="dispImporterAdminContent" type="view" standalone="true" admin_index="true" menu_name="importer" menu_index="true" />
|
||||
|
||||
<action name="procImporterAdminImport" type="controller" standalone="true" />
|
||||
<action name="procImporterAdminPreProcessing" type="controller" standalone="true" />
|
||||
|
|
|
|||
|
|
@ -6,45 +6,33 @@
|
|||
<load target="css/importer.min.css" />
|
||||
<!--@end-->
|
||||
|
||||
<h3 class="xeAdmin">{$lang->importer} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
<!-- 설명 -->
|
||||
<div class="infoText">{nl2br($lang->about_importer)}</div>
|
||||
|
||||
<!--// step 1. import하려는 XML파일의 성격 및 대상 모듈을 지정 -->
|
||||
<div id="step1">
|
||||
<form action="./" method="post">
|
||||
<div class="content" id="content">
|
||||
<form action="./" class="form">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
|
||||
<h4 class="xeAdmin">{$lang->import_step_title[1]} - {$lang->import_step_desc[1]}</h4>
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tr>
|
||||
<th scope="col"><div><label for="source_type_module">1. {$lang->type_module}</label></div></th>
|
||||
<td class="wide"><input type="radio" name="source_type" value="module" id="source_type_module" /> <label for="source_type_module">{$lang->about_type_module}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><div><label for="source_type_ttxml">2. {$lang->type_ttxml}</label></div></th>
|
||||
<td><input type="radio" name="source_type" value="ttxml" id="source_type_ttxml" /> <label for="source_type_ttxml">{$lang->about_type_ttxml}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><div><label for="source_type_member">3. {$lang->type_member}</label></div></th>
|
||||
<td><input type="radio" name="source_type" value="member" id="source_type_member" /> <label for="source_type_member">{$lang->about_type_member}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><div><label for="source_type_syncmember">4. {$lang->type_syncmember}</label></div></th>
|
||||
<td><input type="radio" name="source_type" value="sync" id="source_type_syncmember" /> <label for="source_type_syncmember">{$lang->about_type_syncmember}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><div><label for="source_type_message">5. {$lang->type_message}</label></div></th>
|
||||
<td><input type="radio" name="source_type" value="message" id="source_type_message" /> <label for="source_type_message">{$lang->about_type_message}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2" class="button">
|
||||
<span class="button black strong"><input type="submit" value="{$lang->cmd_next}" /></span>
|
||||
</th>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<h1 class="h1">{$lang->importer}</h1>
|
||||
<p>{nl2br($lang->about_importer)}</p>
|
||||
<h2 class="h2">{$lang->import_step_title[1]} - {$lang->import_step_desc[1]}</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<input type="radio" name="source_type" value="module" id="source_type_module" /> <label for="source_type_module"><strong>{$lang->type_module}:</strong> {$lang->about_type_module}</label>
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="source_type" value="ttxml" id="source_type_ttxml" /> <label for="source_type_ttxml"><strong>{$lang->type_ttxml}:</strong> {$lang->about_type_ttxml}</label>
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="source_type" value="member" id="source_type_member" /> <label for="source_type_member"><strong>{$lang->type_member}:</strong> {$lang->about_type_member}</label>
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="source_type" value="sync" id="source_type_syncmember" /> <label for="source_type_syncmember"><strong>{$lang->type_syncmember}:</strong> {$lang->about_type_syncmember}</label>
|
||||
</li>
|
||||
<li>
|
||||
<input type="radio" name="source_type" value="message" id="source_type_message" /> <label for="source_type_message"><strong>{$lang->type_message}:</strong> {$lang->about_type_message}</label>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="btnArea">
|
||||
<span class="btn medium"><input type="submit" value="{$lang->cmd_next}" /></span>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue