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

Triggered by /modules/shop/controllers/shop_customers.php
Author LemonStand eCommerce Inc.

Event handler signature

public void event_onConfigureCustomersPage(Shop_Customers $controller)
$controller Shop_Customers specifies the controller object.
Allows to configure the Administration Area customer pages before they are displayed. In the event handler you can update the back-end controller properties. Use it for example to add custom filters for the customers list.
public function subscribeEvents()
{
  Backend::$events->addEvent('shop:onConfigureCustomersPage', $this, 'configure_customers_page');
}

public function configure_customers_page($controller)
{
  // Do something
}