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/branches/1.5.0@8503 201d5d3c-b55e-5fd7-737f-ddc643e51545
47 lines
2.1 KiB
HTML
47 lines
2.1 KiB
HTML
<form ruleset="fileModuleConfig" action="./" method="post">
|
|
<input type="hidden" name="act" value="procFileAdminInsertModuleConfig" />
|
|
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
|
|
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
|
|
|
<h4 class="xeAdmin">{$lang->file}</h4>
|
|
<table cellspacing="0" class="rowTable">
|
|
<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">
|
|
<th class="button" colspan="2">
|
|
<span class="button strong black"><input type="submit" value="{$lang->cmd_save}" /></span>
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|