public boolean event_onAutomatedBillingSupported()
{return}
boolean
returns TRUE, if the automated billing features are enabled. Returns FALSE otherwise.
Allows to enable the automated bulling features in LemonStand.
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onAutomatedBillingSupported', $this, 'process_auto_billing_supported');
}
public function process_auto_billing_supported()
{
return true;
}