Triggered when the system initialization finishes and before any AJAX or POST handler is invoked.
Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('core:onInitialize', $this, 'core_initialize');
}
public function core_initialize()
{
// Do something
}