page_header hook

This commit is contained in:
Friendika 2010-12-30 14:36:35 -08:00
parent 279469ab35
commit 98dcc19511
2 changed files with 6 additions and 2 deletions

View File

@ -114,6 +114,10 @@ Current hooks:
$b is (string) converted text
'page_header' - called after building the page navigation section
$b is (string) HTML of nav region
*** = subject to change

View File

@ -50,16 +50,16 @@
$a->page['nav'] .= '<a id="nav-contacts-link" class="nav-link" href="contacts">' . t('Contacts') . "</a>\r\n";
}
$a->page['nav'] .= "</span>\r\n<span id=\"nav-end\"></span>\r\n";
$banner = get_config('system','banner');
if($banner === false)
$banner .= '<a href="http://friendika.com"><img id="logo-img" src="images/ff-32.jpg" alt="logo" /></a><span id="logo-text"><a href="http://friendika.com">Friendika</a></span>';
$a->page['nav'] .= '<span id="banner">' . $banner . '</span>';
call_hooks('page_header', $a->page['nav']);