aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorM.Dent (DM42.Net) <dentm42@gmail.com>2018-09-15 23:09:16 -0400
committerM.Dent (DM42.Net) <dentm42@gmail.com>2018-09-15 23:09:16 -0400
commitabe35817cd4f81c2d9c8305573c5fa5cbe154095 (patch)
tree826e24e9c5b10bc182558a930780a782d0973750 /include
parent791ff25d52c7f7e95758f1218a1621012b15be7c (diff)
downloadvolse-hubzilla-abe35817cd4f81c2d9c8305573c5fa5cbe154095.tar.gz
volse-hubzilla-abe35817cd4f81c2d9c8305573c5fa5cbe154095.tar.bz2
volse-hubzilla-abe35817cd4f81c2d9c8305573c5fa5cbe154095.zip
Add attach_delete hook
Diffstat (limited to 'include')
-rw-r--r--include/attach.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/attach.php b/include/attach.php
index 202412263..4db5bc435 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1428,6 +1428,8 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
if(! $r) {
attach_drop_photo($channel_id,$resource);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
return;
}
@@ -1486,6 +1488,9 @@ function attach_delete($channel_id, $resource, $is_photo = 0) {
intval($channel_id)
);
+ $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo];
+ call_hooks("attach_delete",$arr);
+
file_activity($channel_id, $object, $object['allow_cid'], $object['allow_gid'], $object['deny_cid'], $object['deny_gid'], 'update', true);
return;