You are here

function adminrole_drush_command in Admin role 6

Same name and namespace in other branches
  1. 5 adminrole.drush.inc \adminrole_drush_command()
  2. 7 adminrole.drush.inc \adminrole_drush_command()

Implements hook_drush_command().

File

./adminrole.drush.inc, line 11
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;
}