2
Hi,
not without hacking core :(
You will have to edit class/textsanitizer/censor/censor.php and change $censorConf['censor_enable'] to true or false depending on a global var that you set on your page.
In you page you can use :
$GLOBALS['use_censor'] = true;
//here goes the script that gets the objects you need to censor(filter)
$GLOBALS['use_censor'] = false;
and in censor.php you can use:
$censorConf['censor_enable'] = false;
if (@$GLOBALS['use_censor']) {
$censorConf['censor_enable'] = true;
}