You are here

public function WrapperPluginBase::getConfig in Backup and Migrate 5.0.x

Return a Backup and Migrate Config object with the plugin configuration.

Return value

\Drupal\backup_migrate\Core\Config\Config

3 calls to WrapperPluginBase::getConfig()
DefaultDBSourcePlugin::getObject in src/Plugin/BackupMigrateSource/DefaultDBSourcePlugin.php
Get the Backup and Migrate plugin object.
EntireSiteSourcePlugin::getObject in src/Plugin/BackupMigrateSource/EntireSiteSourcePlugin.php
Get the Backup and Migrate plugin object.
WrapperPluginBase::getObject in src/Drupal/EntityPlugins/WrapperPluginBase.php
Get the Backup and Migrate plugin object.

File

src/Drupal/EntityPlugins/WrapperPluginBase.php, line 75

Class

WrapperPluginBase
A base class for a Drupal source or destination wrapper plugin.

Namespace

Drupal\backup_migrate\Drupal\EntityPlugins

Code

public function getConfig() {
  return new Config($this
    ->getConfiguration());
}