function ip_drush_command in IP address manager 7.2
Implements hook_drush_command().
File
- ./
ip.drush.inc, line 11
Code
function ip_drush_command() {
$items['ip-backlog-comments'] = array(
'description' => 'Insert comments IP address data loaded prior to module instalation in IP Post table taken from comments table.',
'aliases' => array(
'ip-bc',
),
'options' => array(
'size' => array(
'description' => 'The number of entities to process in a single batch request.',
'example-value' => '500',
),
),
);
$items['ip-backlog-nodes'] = array(
'description' => 'Insert nodes IP address data loaded prior to module instalation in IP Post table from taken watchdog table (dblog).',
'aliases' => array(
'ip-bn',
),
'options' => array(
'size' => array(
'description' => 'The number of entities to process in a single batch request.',
'example-value' => '500',
),
),
);
return $items;
}