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,12 @@
<?xml version="1.0" encoding="utf-8"?>
<module>
<grants />
<actions>
<action name="dispContent" type="view" admin_index="true" />
<action name="procInsertDeniedIP" type="controller" />
<action name="procDeleteDeniedIP" type="controller" />
<action name="procInsertDeniedWord" type="controller" />
<action name="procDeleteDeniedWord" type="controller" />
</actions>
</module>

View file

@ -2,7 +2,7 @@
/**
* @class spamfilterModel
* @author zero (zero@nzeo.com)
* @brief spamfilter 모듈의 controller class
* @brief spamfilter 모듈의 Model class
**/
class spamfilterModel extends spamfilter {

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;
}
}
?>