function antispam_page in AntiSpam 7
Same name and namespace in other branches
- 6 antispam.module \antispam_page()
Menu callback to build a page for a specific module callback.
1 string reference to 'antispam_page'
- antispam_menu in ./
antispam.module - Implements hook_menu().
File
- ./
antispam.module, line 606 - Primary hook implementations for the Antispam module.
Code
function antispam_page($callback, $content_type, $object, $op) {
if (function_exists($callback)) {
return $callback($content_type, $object, $op);
}
drupal_not_found();
}