From: Hypolite Petovan Date: Sat, 2 Oct 2021 15:29:26 +0000 (-0400) Subject: [Docs] Move unfollow hook instances in the correct file X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=52b8cd054d0e2ca35d84017d71f6f6d2e24f6edf;p=friendica.git [Docs] Move unfollow hook instances in the correct file --- diff --git a/doc/Addons.md b/doc/Addons.md index df39079404..a478a176ec 100644 --- a/doc/Addons.md +++ b/doc/Addons.md @@ -666,7 +666,6 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('contact_photo_menu', $args); Hook::callAll('follow', $arr); - Hook::callAll('unfollow', $hook_data); ### src/Model/Profile.php @@ -750,6 +749,9 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('logged_in', $a->user); +### src/Core/Protocol.php + + Hook::callAll('unfollow', $hook_data); ### src/Core/StorageManager Hook::callAll('storage_instance', $data); diff --git a/doc/de/Addons.md b/doc/de/Addons.md index b242d13078..34e4a53586 100644 --- a/doc/de/Addons.md +++ b/doc/de/Addons.md @@ -356,7 +356,6 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap Hook::callAll('contact_photo_menu', $args); Hook::callAll('follow', $arr); - Hook::callAll('unfollow', $hook_data); ### src/Model/Profile.php @@ -413,7 +412,9 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap ### src/Core/Authentication.php Hook::callAll('logged_in', $a->user); - + +### src/Core/Protocol.php + Hook::callAll('unfollow', $hook_data); ### src/Core/StorageManager Hook::callAll('storage_instance', $data);