function workbench_access_drush_command in Workbench Access 7
Same name and namespace in other branches
- 8 workbench_access.drush.inc \workbench_access_drush_command()
Implements hook_drush_command().
1 call to workbench_access_drush_command()
- workbench_access_drush_help in ./
workbench_access.drush.inc - Implement hook_drush_help().
File
- ./
workbench_access.drush.inc, line 11 - Drush commands for Workbench Access.
Code
function workbench_access_drush_command() {
$items = array();
$items['workbench-access-test'] = array(
'description' => 'Install test configuration of Workbench Access.',
'aliases' => array(
'wa-test',
),
);
return $items;
}