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

Triggered by System_Backup_Archive
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onAfterArchiveCreate()
Triggered after LemonStand archive is created. Example:
public function subscribeEvents()
{
  Backend::$events->addEvent('core:onAfterArchiveCreate', $this, 'after_archive_create');
}

public function after_archive_create()
{
  // Do something
}