You are here

function wbm2cm_drush_command in Workbench Moderation to Content Moderation 8.2

Implements hook_drush_command().

File

./wbm2cm.drush.inc, line 6

Code

function wbm2cm_drush_command() {
  return [
    'wbm2cm-migrate' => [
      'description' => 'Migrates your site from Workbench Moderation to Content Moderation.',
    ],
    'wbm2cm-save' => [
      'description' => 'Saves moderation state data to temporary migration tables.',
    ],
    'wbm2cm-clear' => [
      'description' => 'Deletes moderation state data.',
    ],
    'wbm2cm-restore' => [
      'description' => 'Restores moderation state data from temporary migration tables.',
    ],
  ];
}