function media_expire_drush_command in Media Expire 8
Same name and namespace in other branches
- 8.2 drush/media_expire.drush.inc \media_expire_drush_command()
Implements hook_drush_command().
File
- drush/
media_expire.drush.inc, line 11 - Drush integration for the media_expire module.
Code
function media_expire_drush_command() {
$items['media-expire-check'] = [
'description' => dt('Checks for expired media.'),
'aliases' => [
'mec',
],
];
return $items;
}