function domain_drush_command in Domain Access 7.2
Same name and namespace in other branches
- 8 domain/domain.drush.inc \domain_drush_command()
- 6.2 domain.drush.inc \domain_drush_command()
- 7.3 domain.drush.inc \domain_drush_command()
Implements hook_drush_command().
1 call to domain_drush_command()
- domain_drush_help in ./
domain.drush.inc - Implements hook_drush_help().
File
- ./
domain.drush.inc, line 12 - Drush commands for Domain Access.
Code
function domain_drush_command() {
$items = array();
$items['domain-list'] = array(
'description' => 'List active domains for the site.',
);
return $items;
}