From 437ae412fabeebfeffc0adeb2fcc284599afdce9 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 22 Oct 2016 22:58:44 -0400 Subject: [PATCH] More `include/nav.php` formatting - Add Doxygen comment block for `nav_info()` - Remove superfluous by-reference symbol and added type hinting to `nav_info()` declaration - More formatting --- include/nav.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/include/nav.php b/include/nav.php index a55629a5a0..293fa99a57 100644 --- a/include/nav.php +++ b/include/nav.php @@ -43,8 +43,13 @@ function nav(&$a) { call_hooks('page_header', $a->page['nav']); } - -function nav_info(&$a) +/** + * @brief Prepares a list of navigation links + * + * @param App $a + * @return array + */ +function nav_info(App $a) { $ssl_state = ((local_user()) ? true : false); @@ -56,7 +61,7 @@ function nav_info(&$a) $myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : ''); - $sitelocation = $myident . substr($a->get_baseurl($ssl_state),strpos($a->get_baseurl($ssl_state),'//') + 2 ); + $sitelocation = $myident . substr($a->get_baseurl($ssl_state), strpos($a->get_baseurl($ssl_state), '//') + 2 ); // nav links: array of array('href', 'text', 'extra css classes', 'title') $nav = array(); @@ -192,7 +197,7 @@ function nav_info(&$a) // Provide a banner/logo/whatever $banner = get_config('system', 'banner'); if ($banner === false) { - $banner .= 'logoFriendica'; + $banner = 'logoFriendica'; } call_hooks('nav_info', $nav);