Event Hooks Documentation
I find the documentation of vanilla to be kind of lacking in this department.
I really like how DokuWiki documents their event hooks:
https://www.dokuwiki.org/devel:events_list
Look at the section "Plugins handling this event":
https://www.dokuwiki.org/devel:event:ajax_call_unknown#plugins_handling_this_event
This makes it very easy for new developers, as working example code is available for every hook.
I think the latter one would be archievable here by downloading the entire addons repo and doing a grep on it, for example.
Some would habe to be filtered out though, like Base_Render_Before or _Create.
Any idea how one could go on about this?
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Comments
You can do a search for "FireEvent" in the source (and also for EventArguments)
A good point. I'm still prioritizing our general framework docs over doing event-by-event docs, but I'll at least create a stub / starting point for it.
That is one point in code methods tend to be formally documented and this can be used to generate doc, but maybe the same applies to the fire event locations.
grep is your friend.