Overview of events.
According to http://vanillaforums.org/page/Plugins there are quite some events to hook on in Garden and Vanilla. I could browse trough every .php file to see what's where, but is there some overview of events available? Or some smart way to list the available ones in the running installation?
0
Comments
<?php $Sender->FireEvent('BeforeCommentBody'); ?>
Before
<div class="Body"><?php echo Format::To($Comment->Body, $Comment->Format); ?></div> <?php $Sender->FireEvent('AfterCommentBody'); ?> </li> <?php }
This made the MarkDown plugin work, and my own.
@S, that technique only lists available custom events, but not magic events I can hook into.