Merge pull request #5973 from friendica/bug/5946-remove-last-include-security

Update Addon documentation about location of logged_in hook
This commit is contained in:
Michael Vogel 2018-10-20 10:10:56 +02:00 committed by GitHub
commit 7a79ac912c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View File

@ -450,10 +450,6 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
Addon::callHooks('item_photo_menu', $args);
Addon::callHooks('jot_tool', $jotplugins);
### include/security.php
Addon::callHooks('logged_in', $a->user);
### include/text.php
Addon::callHooks('contact_block_end', $arr);
@ -693,6 +689,11 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep-
Addon::callHooks($a->module.'_post_'.$selname, $o);
Addon::callHooks('jot_networks', $jotnets);
### src/Core/Authentication.php
Addon::callHooks('logged_in', $a->user);
### src/Core/Worker.php
Addon::callHooks("proc_run", $arr);

View File

@ -226,10 +226,6 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
Addon::callHooks('item_photo_menu', $args);
Addon::callHooks('jot_tool', $jotplugins);
### include/security.php
Addon::callHooks('logged_in', $a->user);
### include/text.php
Addon::callHooks('contact_block_end', $arr);
@ -426,6 +422,10 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
Addon::callHooks('page_header', $a->page['nav']);
Addon::callHooks('nav_info', $nav);
### src/Core/Authentication.php
Addon::callHooks('logged_in', $a->user);
### src/Worker/Directory.php
Addon::callHooks('globaldir_update', $arr);