A PHP Error was encountered

Severity: 8192

Message: Methods with the same name as their class will not be constructors in a future version of PHP; MarkdownExtraExtended_Parser has a deprecated constructor

Filename: helpers/markdown_extended_helper.php

Line Number: 10

A PHP Error was encountered

Severity: 8192

Message: Methods with the same name as their class will not be constructors in a future version of PHP; Markdown_Parser has a deprecated constructor

Filename: helpers/markdown_helper.php

Line Number: 223

A PHP Error was encountered

Severity: 8192

Message: Methods with the same name as their class will not be constructors in a future version of PHP; MarkdownExtra_Parser has a deprecated constructor

Filename: helpers/markdown_helper.php

Line Number: 1696

Docs - My Bonfire

Events

Bonfire includes an events library which can be used to configure event handling for your application (and to handle events triggered by Bonfire, as well).
See System Events for additional documentation.

trigger($event_name[, &$payload])

Trigger an event.
- $event_name: the name of the event to trigger.
- $payload: (optional) A reference to the data to send to the event method.

Note: Since the $payload is passed by reference, the original data may be modified by the event handler.

When this method is called, any subscribers registered for $event_name in /application/config/events.php will be called.

init()

This method is called by the constructor to allow the library to be initialized when loaded by CodeIgniter.
This is not intended to be called directly (despite being a public method).