function adminrole_drush_command in Admin role 7
Same name and namespace in other branches
- 5 adminrole.drush.inc \adminrole_drush_command()
- 6 adminrole.drush.inc \adminrole_drush_command()
Implements hook_drush_command().
File
- ./
adminrole.drush.inc, line 10 - Drush integration functions for the adminrole module.
Code
function adminrole_drush_command() {
$items['adminrole-update'] = array(
'description' => 'Update the administrator role permissions.',
'callback' => 'drush_adminrole_update',
'drupal dependencies' => array(
'adminrole',
),
);
return $items;
}