function hacked_drush_command_alter in Hacked! 7.2
Implements hook_drush_command_alter().
File
- ./
hacked.drush.inc, line 433
Code
function hacked_drush_command_alter(&$command) {
if ($command['command'] == 'audit_security') {
$command['checks'][] = array(
'name' => 'Hacked',
'location' => __DIR__ . '/hacked.site_audit.inc',
);
}
}