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

shop:onProductReviewApproved event

Triggered by Shop_ProductReview
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onProductReviewApproved(Shop_ProductReview $review)
$review Shop_ProductReview specifies the review object.
Triggered after a product review is approved. Usage example:
public function subscribeEvents()
{
  Backend::$events->addEvent('shop:onProductReviewApproved', $this, 'product_review_approved');
}

public function product_review_approved($product_review)
{
  //do something here
}