X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FPlugins.md;h=49d0665fec9efd2e277816769bd6cfb0b1c09e76;hb=4b33573c20850607d9e1cc0f33a57ffacf12fec8;hp=a30a3f4a71fe1db2f95815ce75717ff69439024e;hpb=01b02dbcaa8532f965389375e961d9c47d74eeec;p=friendica.git diff --git a/doc/Plugins.md b/doc/Plugins.md index a30a3f4a71..49d0665fec 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -281,6 +281,11 @@ $b is an array with: 'template' => filename of template 'vars' => array of vars passed to template +### ''acl_lookup_end' +is called after the other queries have passed. +The registered function can add, change or remove the acl_lookup() variables. + + 'results' => array of the acl_lookup() vars Complete list of hook callbacks @@ -338,6 +343,8 @@ include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr); include/acl_selectors.php: call_hooks($a->module . '_post_' . $selname, $o); +include/acl_selectors.php call_hooks('acl_lookup_end', $results); + include/notifier.php: call_hooks('notifier_normal',$target_item); include/notifier.php: call_hooks('notifier_end',$target_item);