mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class spamfilterAdminView
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief The admin view class of the spamfilter module
|
|
*/
|
|
class spamfilterAdminView extends spamfilter
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
// Set template path
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief Output the list of banned IPs
|
|
*/
|
|
function dispSpamfilterAdminDeniedIPList()
|
|
{
|
|
// Get the list of denied IP addresses and words
|
|
$oSpamFilterModel = getModel('spamfilter');
|
|
$ip_list = $oSpamFilterModel->getDeniedIPList();
|
|
Context::set('ip_list', $ip_list);
|
|
|
|
$security = new Security();
|
|
$security->encodeHTML('ip_list..');
|
|
|
|
// Set a template file
|
|
$this->setTemplateFile('denied_ip_list');
|
|
|
|
}
|
|
|
|
/**
|
|
* @brief Output the list of banned words
|
|
*/
|
|
function dispSpamfilterAdminDeniedWordList()
|
|
{
|
|
// Get the list of denied IP addresses and words
|
|
$oSpamFilterModel = getModel('spamfilter');
|
|
$word_list = $oSpamFilterModel->getDeniedWordList();
|
|
Context::set('word_list', $word_list);
|
|
|
|
$security = new Security();
|
|
$security->encodeHTML('word_list..word');
|
|
|
|
// Set a template file
|
|
$this->setTemplateFile('denied_word_list');
|
|
}
|
|
|
|
/**
|
|
* @brief Configure auto block
|
|
*/
|
|
function dispSpamfilterAdminConfigBlock()
|
|
{
|
|
// Get configurations (using module model object)
|
|
$oModuleModel = getModel('module');
|
|
$config = $oModuleModel->getModuleConfig('spamfilter');
|
|
Context::set('config', $config);
|
|
|
|
$this->setTemplateFile('config_block');
|
|
}
|
|
}
|
|
/* End of file spamfilter.admin.view.php */
|
|
/* Location: ./modules/spamfilter/spamfilter.admin.view.php */
|