Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-12 20:23:38 +0400
committerVincent Petry <pvince81@owncloud.com>2014-03-12 20:23:38 +0400
commit881739cbac7b53fd99ee9467f5eb8a7a83118ceb (patch)
treea89aa70319b1d221ac9ac6a9e517d5f98ab0525d /apps
parent612b52abc528009349cdfd323caed8dda4d21163 (diff)
parent0f864c38bba9e3ad352064db76a3d46be46eba2d (diff)
Merge pull request #7668 from owncloud/trashbin_predelete
add preDelete hook for files_trashbin app
Diffstat (limited to 'apps')
-rw-r--r--apps/files_trashbin/lib/trashbin.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php
index f6816b2b4c2..7e91f8a59ff 100644
--- a/apps/files_trashbin/lib/trashbin.php
+++ b/apps/files_trashbin/lib/trashbin.php
@@ -563,6 +563,7 @@ class Trashbin {
} else {
$size += $view->filesize('/files_trashbin/files/' . $file);
}
+ \OC_Hook::emit('\OCP\Trashbin', 'preDelete', array('path' => '/files_trashbin/files/' . $file));
$view->unlink('/files_trashbin/files/' . $file);
\OC_Hook::emit('\OCP\Trashbin', 'delete', array('path' => '/files_trashbin/files/' . $file));