This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.

LemonStand API

core:onAfterSoftwareUpdate event

Triggered by Core_UpdateManager
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onAfterSoftwareUpdate()
Triggered after LemonStand is updated. This event is triggered after core:onBeforeSoftwareUpdateRequest, core:onAfterSoftwareUpdateRequest and core:onBeforeSoftwareUpdate events. Usage example:
public function subscribeEvents()
{
  Backend::$events->addEvent('core:onAfterSoftwareUpdate', $this, 'after_software_update');
}

public function after_software_update()
{
  // Do something
}