So, I've been looking into this a little bit... Diving into it. The "fraud" module is kind of laid out like a module. Noticed the following functions:
getConfigArray() return configarray()
doFraudCheck($params) return results()
getResultsArray($results) resultarray()
When I configured the getConfigArray() and setup the array as such:
function getConfigArray() {
$configarray = array(
"Enable" => array(
"Type" => "yesno",
"Description" => "Tick to enable My Fraud Module"
),
);
return $configarray;
} //end configArray
when I select the fraud module from the list, it wont display the option. Any help?