There are quite a few "Standard" template hooks in the standard templates
For example, I use this to auto insert the itrader template edit into the postbit and postbit_legacy template. It is fired at the postbit_display_complete hook.
Code:
eval('$template_hook[\'postbit_userinfo_left\'] .= "' . fetch_template('cg_itrader_postbit_link') . '";');
You can find these and other template hooks by viewing the template in an editor. I would do a search for them.
I went through and pulled the postbit and postbit_legacy and the navbar template hooks along with when they should be fired.
Code:
template name="navbar"
template_hook[navbar_buttons_right]
template_hook[navbar_search_menu]
template_hook[navbar_quick_links_menu_pos1]
template_hook[navbar_quick_links_menu_pos2]
template_hook[navbar_quick_links_menu_pos3]
template_hook[navbar_quick_links_menu_pos4]
hook = "global_setup_complete"
template name="postbit_legacy" and template name="postbit"
template_hook[postbit_start]
template_hook[postbit_userinfo_left]
template_hook[postbit_userinfo_right_after_posts]
template_hook[postbit_userinfo_right]
template_hook[postbit_messagearea_start]
template_hook[postbit_signature_start]
template_hook[postbit_signature_end]
template_hook[postbit_controls]
template_hook[postbit_end]
template_hook[postbit_user_popup]
hook = "postbit_display_complete"
Mark