rhymix/modules/file/tpl/file_config.html
misol 125ef5eaa1 #17633688 허용 사이트 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5351 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-01-13 08:14:43 +00:00

51 lines
2.1 KiB
HTML

<!--#include("header.html")-->
<!--%import("filter/insert_config.xml")-->
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
<table cellspacing="0" class="adminTable">
<tr class="row2">
<th scope="col"><div>{$lang->allow_outlink}</div></th>
<td>
<select name="allow_outlink">
<option value="Y"<!--@if($config->allow_outlink=='Y')--> selected="selected"<!--@end-->>{$lang->enable}</option>
<option value="N"<!--@if($config->allow_outlink=='N')--> selected="selected"<!--@end-->>{$lang->disable}</option>
</select>
<p>{$lang->about_allow_outlink}</p>
</td>
</tr>
<tr class="row2">
<th scope="col"><div>{$lang->allow_outlink_site}</div></th>
<td>
<textarea name="allow_outlink_site" cols="70">{$config->allow_outlink_site}</textarea>
<p>{$lang->about_allow_outlink_site}</p>
</td>
</tr>
<tr class="row2">
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
<td>
<input type="text" name="allowed_filesize" value="{$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="{$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="{$config->allowed_filetypes}" class="inputTypeText w100" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>
<tr>
<td scope="row" colspan="2" class="right">
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</td>
</tr>
</table>
</form>