]> git.mxchange.org Git - friendica.git/commitdiff
nav_info hook and documentation in en and de
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 1 Jun 2015 10:00:00 +0000 (12:00 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 1 Jun 2015 10:00:00 +0000 (12:00 +0200)
doc/Plugins.md
doc/de/Plugins.md
include/nav.php

index 8369e9fadc7dab61ebe36d587f8defe5fc219566..cf236d422a0912ac77c6dff089b261deec2bc3bc 100644 (file)
@@ -268,6 +268,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
 ---
 
index 448eee39bc4a244af7f0bce891de6e55b0fd2904..dcff41a4b64968f6753bc29dbaab3210f0b4c425 100644 (file)
@@ -176,6 +176,9 @@ Du kannst ebenso plugin_name_init(&$a) nutzen, was oft frühzeitig aufgerufen wi
         'email' => Email-Adresse, um nach dem Avatar zu suchen
         'url' => generierte URL (String) des Avatars
 
+**'nav_info'**
+ - wird aufgerufen nachdem in include/nav,php der Inhalt des Navigations Menüs erzeugt wurde.
+ - $b ist ein Array, das $nav wiederspiegelt.
 
 Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 14-Feb-2012 generiert): Bitte schau in die Quellcodes für Details zu Hooks, die oben nicht dokumentiert sind.
 
index df5e00394e07b61319227c2bdbc5a28d80565194..3d27be13be819bf8e1c4dd66a1da260501200f50 100644 (file)
@@ -200,6 +200,8 @@ function nav_info(&$a) {
        if($banner === false) 
                $banner .= '<a href="http://friendica.com"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="http://friendica.com">Friendica</a></span>';
 
+       call_hooks('nav_info', $nav);
+
 
        return array(
                'sitelocation' => $sitelocation,