MySQLSourcePlugin.php in Backup and Migrate 5.0.x
Same filename and directory in other branches
File
src/Plugin/BackupMigrateSource/MySQLSourcePlugin.phpView 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
Name | Description |
---|---|
MySQLSourcePlugin | Defines an mysql source plugin. |