issue 70 spamfilter admin module UI modified

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8768 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
chschy 2011-08-16 04:47:30 +00:00
parent aa694bce26
commit 727c569053
9 changed files with 133 additions and 60 deletions

View file

@ -17,40 +17,23 @@
/**
* @brief Spam Filter configurations
* Output the list of banned IPs and words
**/
function dispSpamfilterAdminConfig() {
function dispSpamfilterAdminSetting() {
// Get configurations (using module model object)
$oModuleModel = &getModel('module');
$config = $oModuleModel->getModuleConfig('spamfilter');
Context::set('config',$config);
// Set a template file
$this->setTemplateFile('index');
}
/**
* @brief Output the list of banned IPs
**/
function dispSpamfilterAdminDeniedIPList() {
// Get the list of banned IP addresses
$oSpamFilterModel = &getModel('spamfilter');
// Get the list of denied IP addresses and words
$oSpamFilterModel = &getModel('spamfilter');
$ip_list = $oSpamFilterModel->getDeniedIPList();
Context::set('ip_list', $ip_list);
// Set a template file
$this->setTemplateFile('denied_ip_list');
}
/**
* @brief Output the list of prohibited words
**/
function dispSpamfilterAdminDeniedWordList() {
// Get the list of prohibited words
$oSpamFilterModel = &getModel('spamfilter');
$word_list = $oSpamFilterModel->getDeniedWordList();
Context::set('config',$config);
Context::set('ip_list', $ip_list);
Context::set('word_list', $word_list);
// Set a template file
$this->setTemplateFile('denied_word_list');
}
$this->setTemplateFile('spSpamFilter');
}
}
?>