public function PluginBase::supportedOps in Backup and Migrate 5.0.x
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 src/
Core/ Plugin/ PluginBase.php - What is the weight of the given operation for this plugin.
- PluginBase::supportsOp in src/
Core/ Plugin/ PluginBase.php - Does this plugin implement the given operation.
8 methods override PluginBase::supportedOps()
- CompressionFilter::supportedOps in src/
Core/ Filter/ CompressionFilter.php - Get a list of supported operations and their weight.
- DestinationBase::supportedOps in src/
Core/ Destination/ DestinationBase.php - Get a list of supported operations and their weight.
- DrupalEncrypt::supportedOps in src/
Drupal/ Filter/ DrupalEncrypt.php - Get a list of supported operations and their weight.
- FileDirectorySource::supportedOps in src/
Core/ Source/ FileDirectorySource.php - Get a list of supported operations and their weight.
- FileNamer::supportedOps in src/
Core/ Filter/ FileNamer.php - Get a list of supported operations and their weight.
File
- src/
Core/ Plugin/ PluginBase.php, line 28
Class
- PluginBase
- @package Drupal\backup_migrate\Core\Plugin
Namespace
Drupal\backup_migrate\Core\PluginCode
public function supportedOps() {
return [];
}