issue 70 spamfilter UI - add script

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8935 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
chschy 2011-08-30 01:10:38 +00:00
parent 5a1d41dd00
commit d53eb1e448
14 changed files with 82 additions and 311 deletions

View file

@ -53,35 +53,7 @@
}
return false;
}
/**CUT!
* @brief Spam filter configurations
**/
function procSpamfilterAdminInsertConfig() {
// Get the default information
$args = Context::gets('interval','limit_count','check_trackback');
if($args->check_trackback!='Y') $args->check_trackback = 'N';
// Create and insert the module Controller object
$oModuleController = &getController('module');
$output = $oModuleController->insertModuleConfig('spamfilter',$args);
if($output->toBool() && !in_array(Context::getRequestMethod(),array('XMLRPC','JSON'))) {
$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminConfig');
header('location:'.$returnUrl);
return;
}
return $output;
}
/** CUT!
* @brief Register the banned IP address
**/
function procSpamfilterAdminInsertDeniedIP() {
$ipaddress = Context::get('ipaddress');
$description = Context::get('description');
$oSpamfilterController = &getController('spamfilter');
return $oSpamfilterController->insertIP($ipaddress, $description);
}
/**
* @brief Delete the banned IP
**/
@ -96,20 +68,6 @@
return $output;
}
/** CUT!
* @brief Register the prohibited word
**/
function procSpamfilterAdminInsertDeniedWord() {
$word = Context::get('word');
$output = $this->insertWord($word);
if($output->toBool() && !in_array(Context::getRequestMethod(),array('XMLRPC','JSON'))) {
$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispSpamfilterAdminSetting');
header('location:'.$returnUrl);
return;
}
return $output;
}
/**
* @brief Delete the prohibited Word
**/