mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@238 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a5f53d4b25
commit
0a2aa301d6
3 changed files with 39 additions and 1 deletions
12
modules/spamfilter/conf/module.xml
Normal file
12
modules/spamfilter/conf/module.xml
Normal 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>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* @class spamfilterModel
|
* @class spamfilterModel
|
||||||
* @author zero (zero@nzeo.com)
|
* @author zero (zero@nzeo.com)
|
||||||
* @brief spamfilter 모듈의 controller class
|
* @brief spamfilter 모듈의 Model class
|
||||||
**/
|
**/
|
||||||
|
|
||||||
class spamfilterModel extends spamfilter {
|
class spamfilterModel extends spamfilter {
|
||||||
|
|
|
||||||
26
modules/spamfilter/spamfilter.view.php
Normal file
26
modules/spamfilter/spamfilter.view.php
Normal 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue