diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-09-13 12:10:28 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-09-13 12:10:28 +0200 |
commit | 441ac433b1da0baa9dd52ab5b236209befe4eb29 (patch) | |
tree | f74e820946be7bf0a9d1ea7d3fa9f8895933512a /lib/public | |
parent | dacd18158d4d47ea9c279b4707439ddbbb88f7cc (diff) | |
download | nextcloud-server-441ac433b1da0baa9dd52ab5b236209befe4eb29.tar.gz nextcloud-server-441ac433b1da0baa9dd52ab5b236209befe4eb29.zip |
Add a nodeFilter parameter for IExportDestination::copyFolder
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/UserMigration/IExportDestination.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/UserMigration/IExportDestination.php b/lib/public/UserMigration/IExportDestination.php index 65d228faeb9..5cd313843cc 100644 --- a/lib/public/UserMigration/IExportDestination.php +++ b/lib/public/UserMigration/IExportDestination.php @@ -60,11 +60,12 @@ interface IExportDestination { * * @param Folder $folder folder to copy to the export archive. * @param string $destinationPath Full path to the folder in the export archive. Parent directories will be created if needed. + * @param ?callable(\OCP\Files\Node):bool $nodeFilter Callback to filter nodes to copy * @throws UserMigrationException * * @since 24.0.0 */ - public function copyFolder(Folder $folder, string $destinationPath): void; + public function copyFolder(Folder $folder, string $destinationPath, ?callable $nodeFilter = null): void; /** * @param array<string,int> $versions Migrators and their versions. |