You are here

public function DrupalEncrypt::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

src/Filter/DrupalEncrypt.php, line 122

Class

DrupalEncrypt
Class DrupalEncrypt.

Namespace

BackupMigrate\Drupal\Filter

Code

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