]> git.mxchange.org Git - friendica.git/blobdiff - doc/Plugins.md
Clarified description of ignore
[friendica.git] / doc / Plugins.md
index 8369e9fadc7dab61ebe36d587f8defe5fc219566..dcd6e3b052e76ae3e78c858f0188bf40c4c69444 100644 (file)
@@ -2,7 +2,6 @@ Friendica Addon/Plugin development
 ==========================
 
 Please see the sample addon 'randplace' for a working example of using some of these features.
-The facebook addon provides an example of integrating both "addon" and "module" functionality.
 Addons work by intercepting event hooks - which must be registered.
 Modules work by intercepting specific page requests (by URL path). 
 
@@ -268,6 +267,10 @@ $b is an array, params to mail()
     'body'
     'headers'
 
+###'nav_info'
+is called after the navigational menu is build in include/nav.php.
+$b is an array containing $nav from nav.php.
+
 Complete list of hook callbacks
 ---