mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1082 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
dc42a3ec23
commit
1f764c3d92
2 changed files with 23 additions and 14 deletions
|
|
@ -73,7 +73,7 @@
|
||||||
$this->page_count = $this->module_info->page_count?$this->module_info->page_count:10;
|
$this->page_count = $this->module_info->page_count?$this->module_info->page_count:10;
|
||||||
|
|
||||||
// 스킨 템플릿 경로 지정
|
// 스킨 템플릿 경로 지정
|
||||||
$template_path = sprintf("%sskins/%s/",$this->module_path, $this->module_info->skin);
|
$template_path = sprintf("%sskins/%s/",$this->module_path, $this->skin);
|
||||||
$this->setTemplatePath($template_path);
|
$this->setTemplatePath($template_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -104,18 +104,27 @@
|
||||||
<input type="hidden" name="upload_target_srl" value="{$upload_target_srl}" />
|
<input type="hidden" name="upload_target_srl" value="{$upload_target_srl}" />
|
||||||
<input type="hidden" name="act" value="procFileUpload" />
|
<input type="hidden" name="act" value="procFileUpload" />
|
||||||
|
|
||||||
|
<table border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr valign="top">
|
||||||
|
<td>
|
||||||
<!-- 미리보기 -->
|
<!-- 미리보기 -->
|
||||||
<div class="editor_preview_uploaded" id="preview_uploaded_{$upload_target_srl}"><img src="./images/blank.gif" width="100" height="100" alt="preview" /></div>
|
<div class="editor_preview_uploaded" id="preview_uploaded_{$upload_target_srl}"><img src="./images/blank.gif" width="100" height="100" alt="preview" /></div>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
<!-- 파일 업로드 영역 -->
|
<!-- 파일 업로드 영역 -->
|
||||||
<div class="editor_uploader">
|
<div class="editor_uploader">
|
||||||
<select id='uploaded_file_list_{$upload_target_srl}' size='9' class="uploaded_file_list" onclick="editor_preview(this, '{$upload_target_srl}')"></select>
|
<select id='uploaded_file_list_{$upload_target_srl}' size='9' class="uploaded_file_list" onclick="editor_preview(this, '{$upload_target_srl}')"></select>
|
||||||
</div>
|
</div>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
<div class="editor_uploader_input_area">
|
<div class="editor_uploader_input_area">
|
||||||
<input type="button" value="{$lang->edit->upload_file}" class="editor_uploader_input" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
<input type="button" value="{$lang->edit->upload_file}" class="editor_uploader_input" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
||||||
<input type="button" value="{$lang->edit->delete_selected}" class="editor_uploader_input" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
<input type="button" value="{$lang->edit->delete_selected}" class="editor_uploader_input" onclick="editor_remove_file('{$upload_target_srl}');return false;" />
|
||||||
<input type="button" value="{$lang->edit->link_file}" class="editor_uploader_input" onclick="editor_insert_file('{$upload_target_srl}');return false;" />
|
<input type="button" value="{$lang->edit->link_file}" class="editor_uploader_input" onclick="editor_insert_file('{$upload_target_srl}');return false;" />
|
||||||
<input type="file" size="1" name="file" id="file_uploader_{$upload_target_srl}" class="editor_uploader_file_input" onchange="editor_file_upload(this, '{$upload_target_srl}')" value="{$lang->edit->upload}" />
|
<input type="file" size="1" name="file" id="file_uploader_{$upload_target_srl}" class="editor_uploader_file_input" onchange="editor_file_upload(this, '{$upload_target_srl}')" value="{$lang->edit->upload}" />
|
||||||
</div>
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue