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

This commit is contained in:
zero 2007-03-05 06:34:13 +00:00
parent a5f53d4b25
commit 0a2aa301d6
3 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,26 @@
<?php
/**
* @class spamfilterView
* @author zero (zero@nzeo.com)
* @brief spamfilter 모듈의 View class
**/
class spamfilterView extends spamfilter {
/**
* @brief 초기화
**/
function init() {
$this->setTemplatePath($this->module_path.'tpl.admin');
}
/**
* @brief 관리자 모드에서 보여줄 화면
**/
function dispContent() {
print 11;
}
}
?>