I've tried to follow the docs: https://docs.kentico.com/k11/custom-development/handling-global-events/handling-object-events for setting up a global event handler, but it's not working for our MVC site. The OnInit functions don't seem to ever trigger in MVC.
Check our Brian McKeiver's post here. Simply stated, use the Global.asax.cs file in the Application_Start method to add your events.
Thanks @Brenden - exactly what I was looking for.
The short answer is to put the Global Event handler inside the Application_Start method of the Global.asax.cs.
Please, sign in to be able to submit a new answer.