You are here

MySQLSourcePlugin.php in Backup and Migrate 5.0.x

Same filename and directory in other branches
  1. 8.4 src/Plugin/BackupMigrateSource/MySQLSourcePlugin.php

File

src/Plugin/BackupMigrateSource/MySQLSourcePlugin.php
View source
<?php

namespace Drupal\backup_migrate\Plugin\BackupMigrateSource;

use Drupal\backup_migrate\Drupal\EntityPlugins\SourcePluginBase;

/**
 * Defines an mysql source plugin.
 *
 * @BackupMigrateSourcePlugin(
 *   id = "MySQL",
 *   title = @Translation("MySQL Database"),
 *   description = @Translation("Back up a MySQL compatible database."),
 *   wrapped_class = "\Drupal\backup_migrate\Core\Source\MySQLiSource"
 * )
 */
class MySQLSourcePlugin extends SourcePluginBase {

}

Classes

Namesort descending Description
MySQLSourcePlugin Defines an mysql source plugin.