Home › Program Hooks › Group View Hooks
Group View Hooks
These program hooks can be used on Group View pages.
sf_hook_group_header 
This hook can be used to execute code or display content after page content but before any forum display on Group View pages. This hook will execute above the admin bar and login strip.
function sf_hook_group_header()
{
return '';
}
sf_hook_post_group 
This hook can be used to execute code or display content after each Group on Group View pages. The ID of the current Group is passed into the hook.
function sf_hook_post_group($groupid)
{
return '';
}
sf_hook_post_forum 
This hook can be used to execute code or display content after each forum row following the forum description on Group View pages. The ID of the current Forum is passed into the hook.
function sf_hook_post_forum($forumid)
{
return '';
}
Article written by steve on January 24, 2010 and last modified by Yellow Swordfish on February 25, 2010
