These are two plugin examples from this thread -
Template Hook
Using the $template_hook['navbar_buttons_left'] to insert stuff directly using html:
PHP Code:
$template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="index.php">Home Page</a></td>';
Using the $template_hook[navbar_buttons_left] to insert stuff from the 'new_navbar_item' template:
PHP Code:
eval('$template_hook[navbar_buttons_left] .= "' . fetch_template('new_navbar_item') . '";');