public function PluginBase::supportedOps in Backup and Migrate 8.4
Get a list of supported operations and their weight.
An array of operations should take the form:
[ 'backup' => ['weight' => 100], 'restore' => ['weight' => -100], ];
Return value
array
Overrides PluginInterface::supportedOps
2 calls to PluginBase::supportedOps()
- PluginBase::opWeight in lib/
backup_migrate_core/ src/ Plugin/ PluginBase.php - What is the weight of the given operation for this plugin.
- PluginBase::supportsOp in lib/
backup_migrate_core/ src/ Plugin/ PluginBase.php - Does this plugin implement the given operation.
8 methods override PluginBase::supportedOps()
- CompressionFilter::supportedOps in lib/
backup_migrate_core/ src/ Filter/ CompressionFilter.php - Get a list of supported operations and their weight.
- DestinationBase::supportedOps in lib/
backup_migrate_core/ src/ Destination/ DestinationBase.php - Get a list of supported operations and their weight.
- DrupalEncrypt::supportedOps in src/
Filter/ DrupalEncrypt.php - Get a list of supported operations and their weight.
- FileDirectorySource::supportedOps in lib/
backup_migrate_core/ src/ Source/ FileDirectorySource.php - Get a list of supported operations and their weight.
- FileNamer::supportedOps in lib/
backup_migrate_core/ src/ Filter/ FileNamer.php - Get a list of supported operations and their weight.
File
- lib/
backup_migrate_core/ src/ Plugin/ PluginBase.php, line 28
Class
- PluginBase
- Class PluginOperationTrait.
Namespace
BackupMigrate\Core\PluginCode
public function supportedOps() {
return [];
}