LemonStand Documentation

core:onInitialize event

The core:onInitialize event is triggered when the system initialization finishes and before any AJAX or POST handler is invoked. 

Event handler example:

public function subscribeEvents()
{
  Backend::$events->addEvent('core:onInitialize', $this, 'core_initialize');
}

public function core_initialize()
{
  // Do something
}

Next: shop:onFilterShippingOptions event
Previous: shop:onRegisterProductSearchEvent event
Return to Handling LemonStand events