function little_helpers_drush_command in Little helpers 7
Implements hook_drush_command().
File
- ./
little_helpers.drush.inc, line 6
Code
function little_helpers_drush_command() {
$items['permission-matrix'] = array(
'description' => 'Show the permission matrix for this installation.',
'arguments' => array(),
'options' => array(),
'aliases' => array(
'perm-matrix',
),
);
return $items;
}