Login Event Listener
Jamroom Developers
Listeners are all over the place in the code. Often there are several different listeners that COULD be used to get your adjustments in where you want them.
The most up-to-date docs are in the docblocks of the functions themselves in the code, so if you're using an IDE for your development, it should have facilities to bring up the docblocks.
( we like phpstorm, but there are many good IDE's )
For me, when I want to locate a suitable listener for a location I take a look around the area I'm wanting to effect and see if there are any
jrCore_trigger_event() functions, then use that listener.
(screenshot search for event triggers in jrUser module)
After running a search for event triggers on the jrUser module, it returns a list of possible triggers.
The one with the most likely name seams to be "login_succcess".
Thats probably the one you're after.
The explanation for that even is
"Fired when a user successfully logs in".
Try that one.