public function PluginManager::map in Backup and Migrate 8.4
Call all plugins which support the given operation. Return the results in an array keyed by the plugin id.
Params is an array of extra params which may be used. Plugins should expect these to be passed as a keyed array.
Parameters
string $op: The name of the operation to be called.
mixed $operand: If there in an object being operated on (eg. a backup file) it will be passed to each plugin in succession. If not then this will be NULL.
array $params: Optional operation parameters as a key/value array
Return value
array
Overrides PluginManagerInterface::map
File
- lib/
backup_migrate_core/ src/ Plugin/ PluginManager.php, line 125
Class
- PluginManager
- Class PluginManager.
Namespace
BackupMigrate\Core\PluginCode
public function map($op, $params = []) {
$out = [];
// Run each of the installed plugins which implements the given operation.
foreach ($this
->getAllByOp($op) as $key => $plugin) {
$out[$key] = $plugin
->{$op}($params);
}
return $out;
}