function antispam_page in AntiSpam 6
Same name and namespace in other branches
- 7 antispam.module \antispam_page()
1 string reference to 'antispam_page'
- antispam_menu in ./
antispam.module - Implementation of hook_menu().
File
- ./
antispam.module, line 604
Code
function antispam_page($callback, $content_type, $object, $op) {
if (function_exists($callback)) {
return $callback($content_type, $object, $op);
}
drupal_not_found();
}