mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
2. 게시판 모듈(board)의 경우 기본 설정 - 추가 설정 - 권한 설정을 여러개의 게시판에 대해서 일괄 적용할 수 있도록 기능 추가 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3519 201d5d3c-b55e-5fd7-737f-ddc643e51545
53 lines
2 KiB
HTML
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>
|
|
|
|
<!--@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>
|