3.7. Feed

3.7.1. feed_sent

This hook is called whenever the feed has been sent to the client (regardless of the cache setting). This can be used to add internal server side tracking code.

Call time:

Feed sent to the client

Hook input:

None

Hook output:

None

Example code:

function phorum_mod_foo_feed_after () 
{
  # E.g. do server side tracking
  @file_get_contents('your tracking service');
}