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

This commit is contained in:
zero 2007-03-05 07:16:51 +00:00
parent bec327d337
commit a4e2f31a53
6 changed files with 83 additions and 17 deletions

View file

@ -12,6 +12,38 @@
**/
function init() {
}
/**
* @brief 금지 IP등록
**/
function procInsertDeniedIP() {
$ipaddress = Context::get('ipaddress');
return $this->insertIP($ipaddress);
}
/**
* @brief 금지 IP삭제
**/
function procDeleteDeniedIP() {
$ipaddress = Context::get('ipaddress');
return $this->deleteIP($ipaddress);
}
/**
* @brief 금지 Word등록
**/
function procInsertDeniedWord() {
$word = Context::get('word');
return $this->insertWord($word);
}
/**
* @brief 금지 Word삭제
**/
function procDeleteDeniedWord() {
$word = Context::get('word');
return $this->deleteWord($word);
}
/**
* @brief IP 등록