diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-01-06 00:20:15 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-01-06 00:20:15 -0500 |
commit | 3b5299b5ca327bab1013e23b6284ce92bea6db04 (patch) | |
tree | ededcfb18bf1d1bae632d52e9e9304d02cc01495 /plugins/Mollom/MollomPlugin.php | |
parent | 76cc791642020084202ef261b3278eb99cf94ec7 (diff) |
Use plugin configuration instead of common_config()
Diffstat (limited to 'plugins/Mollom/MollomPlugin.php')
-rw-r--r-- | plugins/Mollom/MollomPlugin.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Mollom/MollomPlugin.php b/plugins/Mollom/MollomPlugin.php index f89910ae5..4c82c481a 100644 --- a/plugins/Mollom/MollomPlugin.php +++ b/plugins/Mollom/MollomPlugin.php @@ -69,13 +69,13 @@ define('MOLLOM_REDIRECT', 1200); class MollomPlugin extends Plugin { - function __construct($url=null) { - parent::__construct(); - } + public $public_key; + public $private_key; + public $servers; function onStartNoticeSave($notice) { - if (common_config('mollom', 'public_key')) { + if ( $this->public_key ) { //Check spam $data = array( 'post_body' => $notice->content, @@ -123,9 +123,9 @@ class MollomPlugin extends Plugin } // Construct the server URL: - $public_key = common_config('mollom', 'public_key'); + $public_key = $this->public_key; // Retrieve the list of Mollom servers from the database: - $servers = common_config('mollom', 'servers'); + $servers = $this->servers; if ($servers == NULL) { // Retrieve a list of valid Mollom servers from mollom.com: @@ -205,8 +205,8 @@ class MollomPlugin extends Plugin */ private function authentication() { - $public_key = common_config('mollom', 'public_key'); - $private_key = common_config('mollom', 'private_key'); + $public_key = $this->public_key; + $private_key = $this->private_key; // Generate a timestamp according to the dateTime format (http://www.w3.org/TR/xmlschema-2/#dateTime): $time = gmdate("Y-m-d\TH:i:s.\\0\\0\\0O", time()); |