Skip to content

Commit

Permalink
Also inject analytics with headers, not just in footer
Browse files Browse the repository at this point in the history
The current before_footer hook works great for Google Analytics,
but isn't 100% consistent for Piwik as usually the page has
often rendered the header by that time.

Change-Id: Ifac6917818e33db022e1a5522a58b229a9e3e369
  • Loading branch information
peterspicer-catalyst committed Jan 9, 2020
1 parent 21c13d8 commit b01b7c0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,11 @@
function local_analytics_before_footer() {
injector::inject();
}

/**
* Output callback, available since Moodle 3.3
*
*/
function local_analytics_before_http_headers() {
injector::inject();
}

0 comments on commit b01b7c0

Please sign in to comment.