function autoban_drush_command in Automatic IP ban (Autoban) 7
Implements hook_drush_command().
File
- ./
autoban.drush.inc, line 11 - Drush support for autoban module.
Code
function autoban_drush_command() {
$commands = array();
$commands['autoban-ban-all'] = array(
'description' => 'Autoban ban all.',
'aliases' => array(
'autoban',
),
);
return $commands;
}