public function SourceBase::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 PluginBase::supportedOps
File
- lib/
backup_migrate_core/ src/ Source/ SourceBase.php, line 20
Class
- SourceBase
- Class SourceBase.
Namespace
BackupMigrate\Core\SourceCode
public function supportedOps() {
return [
'exportToFile' => [],
'importFromFile' => [],
];
}