video_embed_field-8.x-2.4/modules/video_embed_media/modules/vem_migrate_oembed/src/Commands/VemCommands.php
modules/video_embed_media/modules/vem_migrate_oembed/src/Commands/VemCommands.php
<?php
namespace Drupal\vem_migrate_oembed\Commands;
use Drupal\vem_migrate_oembed\VemMigrate;
use Drush\Commands\DrushCommands;
/**
* A Drush commandfile.
*
* In addition to this file, you need a drush.services.yml
* in root of your module, and a composer.json file that provides the name
* of the services file to use.
*
* See these files for an example of injecting Drupal services:
* - http://cgit.drupalcode.org/devel/tree/src/Commands/DevelCommands.php
* - http://cgit.drupalcode.org/devel/tree/drush.services.yml
*/
class VemCommands extends DrushCommands {
/**
* The migrate service.
*
* @var \Drupal\vem_migrate_oembed\VemMigrate
*/
protected $migrator;
/**
* VemCommands constructor.
*
* @param \Drupal\vem_migrate_oembed\VemMigrate $migrator
* The migrate service.
*/
public function __construct(VemMigrate $migrator) {
parent::__construct();
$this->migrator = $migrator;
}
/**
* Migrates from VEF to core media.
*
* @usage drush vemmo
* Migrates from VEF to core media.
*
* @command vem:migrate_oembed
* @aliases vemmo
*/
public function migrate() {
$this->migrator->migrate();
$this->io()->success(\dt('Migration complete.'));
}
}
