mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
page_header hook
This commit is contained in:
parent
279469ab35
commit
98dcc19511
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
|
||||
$a->page['nav'] .= '<a id="nav-contacts-link" class="nav-link" href="contacts">' . t('Contacts') . "</a>\r\n";
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -57,9 +56,10 @@
|
|||
|
||||
$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']);
|
||||
|
|
Loading…
Reference in a new issue