mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@244 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
bd1aa25eb6
commit
0b00b8348b
9 changed files with 120 additions and 26 deletions
33
modules/spamfilter/tpl.admin/denied_ip_list.html
Normal file
33
modules/spamfilter/tpl.admin/denied_ip_list.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<!--#include("header.html")-->
|
||||
|
||||
<!-- 스패머 정보 -->
|
||||
<div>
|
||||
{$lang->total_count} : {number_format($total_count)}
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 목록 -->
|
||||
<div>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>{$lang->no}</th>
|
||||
<th>{$lang->ipaddress}</th>
|
||||
<th>{$lang->regdate}</th>
|
||||
<th>{$lang->cmd_delete}</th>
|
||||
</tr>
|
||||
<!--@foreach($spammer_list as $no => $val)-->
|
||||
<tr>
|
||||
<td>{$no}</td>
|
||||
<td>{$val->ipaddress}</td>
|
||||
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td><a href="{getUrl('act','dispAdminDeleteBoard','ipaddress', $val->ipaddress)}">{$lang->cmd_delete}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div>
|
||||
[<a href="{getUrl('act','dispAdminInsertBoard','module_srl','')}">{$lang->cmd_insert}</a>]
|
||||
</div>
|
||||
|
||||
33
modules/spamfilter/tpl.admin/denied_word_list.html
Normal file
33
modules/spamfilter/tpl.admin/denied_word_list.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<!--#include("header.html")-->
|
||||
|
||||
<!-- 스패머 정보 -->
|
||||
<div>
|
||||
{$lang->total_count} : {number_format($total_count)}
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 목록 -->
|
||||
<div>
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>{$lang->no}</th>
|
||||
<th>{$lang->ipaddress}</th>
|
||||
<th>{$lang->regdate}</th>
|
||||
<th>{$lang->cmd_delete}</th>
|
||||
</tr>
|
||||
<!--@foreach($spammer_list as $no => $val)-->
|
||||
<tr>
|
||||
<td>{$no}</td>
|
||||
<td>{$val->ipaddress}</td>
|
||||
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td><a href="{getUrl('act','dispAdminDeleteBoard','ipaddress', $val->ipaddress)}">{$lang->cmd_delete}</a></td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div>
|
||||
[<a href="{getUrl('act','dispAdminInsertBoard','module_srl','')}">{$lang->cmd_insert}</a>]
|
||||
</div>
|
||||
|
||||
7
modules/spamfilter/tpl.admin/filter/insert_config.xml
Normal file
7
modules/spamfilter/tpl.admin/filter/insert_config.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<filter name="insert_config" module="spamfilter" act="procInsertConfig" confirm_msg_code="confirm_submit">
|
||||
<form />
|
||||
<response>
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
</response>
|
||||
</filter>
|
||||
|
|
@ -1,33 +1,19 @@
|
|||
<!--#include("header.html")-->
|
||||
|
||||
<!-- 스패머 정보 -->
|
||||
<div>
|
||||
{$lang->total_count} : {number_format($total_count)}
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 목록 -->
|
||||
<div>
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, insert_config)">
|
||||
<table border="1">
|
||||
<tr>
|
||||
<th>{$lang->no}</th>
|
||||
<th>{$lang->ipaddress}</th>
|
||||
<th>{$lang->regdate}</th>
|
||||
<th>{$lang->cmd_delete}</th>
|
||||
<th rowspan="2">{$lang->interval}</th>
|
||||
<td><input type="text" name="interval" value="{$config->interval?$config->interval:60}" /> {$lang->unit_sec}</td>
|
||||
</tr>
|
||||
<!--@foreach($spammer_list as $no => $val)-->
|
||||
<tr>
|
||||
<td>{$no}</td>
|
||||
<td>{$val->ipaddress}</td>
|
||||
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td><a href="{getUrl('act','dispAdminDeleteBoard','ipaddress', $val->ipaddress)}">{$lang->cmd_delete}</a></td>
|
||||
<td>{$lang->about_interval}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- 버튼 -->
|
||||
<div>
|
||||
[<a href="{getUrl('act','dispAdminInsertBoard','module_srl','')}">{$lang->cmd_insert}</a>]
|
||||
</div>
|
||||
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{@getUrl('act','')}'" />
|
||||
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue