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:onBeforeArchiveRestore event

Triggered by System_Backup_Archive
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onBeforeArchiveRestore()
Triggered before LemonStand archive is restored. Example:
public function subscribeEvents()
{
  Backend::$events->addEvent('core:onBeforeArchiveRestore', $this, 'before_archive_restore');
}

public function before_archive_restore()
{
  // Do something
}