mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
46 lines
2 KiB
HTML
46 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="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->file}</caption>
|
|
<tr class="row2">
|
|
<th scope="col"><div>{$lang->allowed_filesize}</div></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"><div>{$lang->allowed_attach_size}</div></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 class="row2">
|
|
<th scope="col"><div>{$lang->allowed_filetypes}</div></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"><div>{$lang->enable_download_group}</div></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 class="row2">
|
|
<td class="right" colspan="2">
|
|
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|