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

cms:onAfterHandleAjax event

Triggered by Cms_Controller
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onAfterHandleAjax()
Triggered after an AJAX request is handled. The event handler result does not affect the request handling process. Usage example:
public function subscribeEvents()
{
  Backend::$events->addEvent('cms:onAfterHandleAjax', $this, 'after_handle_ajax');
}

public function after_handle_ajax($page)
{
  // Do something
}