git-svn-id: http://xe-core.googlecode.com/svn/trunk@240 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-05 06:48:49 +00:00
parent f3419d2932
commit 61b7b47d6c
7 changed files with 96 additions and 1 deletions

View file

@ -13,6 +13,17 @@
function init() {
}
/**
* @brief 등록된 스패머의 목록을 return
**/
function getSpammerList() {
$oDB = &DB::getInstance();
$args->sort_index = "regdate";
$args->list_count = 50;
$args->page = Context::get('page')?Context::get('page'):1;
return $oDB->executeQuery('spamfilter.getSpammerList', $args);
}
/**
* @brief 지정된 IPaddress의 특정 시간대 내의 로그 수를 return
**/