function security_review_security_checks in Security Review 6
Implementation of hook_security_checks().
File
- ./
security_review.module, line 105 - Site security review and reporting Drupal module.
Code
function security_review_security_checks() {
module_load_include('inc', 'security_review');
// security_review_get_checks() will include implementations of this hook
// that Security Review defines on behalf of other modules.
return security_review_get_checks();
}