rhymix/modules/file/tpl/file_module_config.html
zero 62ff4b1fae 1. 에디터 모듈의 추가 설정 부분을 확장하여 업로드 권한/컴포넌트/기본컴포넌트/html사용등의 권한과 에디터 높이/스킨등을 상세히 설정할 수 있도록 기능 추가.
2. 게시판 모듈(board)의 경우 기본 설정 - 추가 설정 - 권한 설정을 여러개의 게시판에 대해서 일괄 적용할 수 있도록 기능 추가


git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3519 201d5d3c-b55e-5fd7-737f-ddc643e51545
2008-01-14 08:58:27 +00:00

53 lines
2 KiB
HTML

<!--%import("filter/insert_file_module_config.xml")-->
<form action="./" method="get" onsubmit="return procFilter(this, insert_file_module_config)">
<input type="hidden" name="target_module_srl" value="{$file_config->module_srl?$file_config->module_srl:$module_srls}" />
<table cellspacing="0" class="adminTable">
<col width="150" />
<col width="*" />
<caption>{$lang->file}</caption>
<tr>
<th scope="col">{$lang->allowed_filesize}</th>
<td>
<input type="text" name="allowed_filesize" value="{$file_config->allowed_filesize}" class="inputTypeText" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allowed_attach_size}</th>
<td>
<input type="text" name="allowed_attach_size" value="{$file_config->allowed_attach_size}" class="inputTypeText" size="3" />MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allowed_filetypes}</th>
<td>
<input type="text" name="allowed_filetypes" value="{$file_config->allowed_filetypes}" class="inputTypeText w100" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>
<tr>
<th scope="col">
{$lang->enable_download_group}<br />
</th>
<td>
<!--@foreach($group_list as $k => $v)-->
<input type="checkbox" class="checkbox" name="download_grant" value="{$v->group_srl}" id="grant_{$key}_{$v->group_srl}" <!--@if(in_array($v->group_srl, $file_config->download_grant))-->checked="checked"<!--@end-->/>
<label for="grant_{$key}_{$v->group_srl}">{$v->title}</label>
&nbsp;
<!--@end-->
</td>
</tr>
<tr>
<th colspan="2" class="button">
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
</th>
</tr>
</table>
</form>
<div class="gap1"></div>