You are here

public function CompressionFilter::supportedOps in Backup and Migrate 5.0.x

Get a list of supported operations and their weight.

Return value

array A list of operations keyed by the operation's name with a list of attributes as a nested array.

Overrides PluginBase::supportedOps

File

src/Core/Filter/CompressionFilter.php, line 26

Class

CompressionFilter

Namespace

Drupal\backup_migrate\Core\Filter

Code

public function supportedOps() {
  return [
    'getFileTypes' => [],
    'backupSettings' => [],
    'afterBackup' => [
      'weight' => 100,
    ],
    'beforeRestore' => [
      'weight' => -100,
    ],
  ];
}