Custom Banning
Jamroom Developers
@michael
That helped quite a bit. The signature is slightly different but I have it working. The fourth parameter has to be a string (seems any string will suffice) so I passed 'censoring'. The key is the optional fifth parameter. This is where we pass the array to populate the type structure. So the working code is below:
$_opt = array('title' => 'Censored Word',
'function' => 'ntCensor_something' );
jrCore_register_module_feature('jrBanned','banned_type', 'ntCensor', 'censoring', $_opt);
Apparently the only requirement for the function (ntCensor_something) is that it exist. Do you off hand know the purpose of this function? I will experiment, but if you already know ....
Thanks again for your help!