Simple Commerce Module Extension Hooks¶
simple_commerce_evaluate_ipn_response¶
Take over processing of PayPal’s response to an IPN confirmation
$result = $this->extensions-> universal_call('simple_commerce_evaluate_ipn_response', $this, $result); if ($this->extensions->end_script === TRUE) return;
$this¶
The current Simple Commerce object including all data relating to the purchase and debug state
simple_commerce_perform_actions_end¶
After a purchase is recorded, do more processing
$edata = $this->extensions-> universal_call('simple_commerce_perform_actions_end', $this, $query->row); if ($this->extensions->end_script === TRUE) return;
$this¶
The current Simple Commerce object including all data relating to the purchase and debug state
simple_commerce_perform_actions_start¶
After a purchase is recorded, do more processing before EE’s processing
$edata = $this->extensions-> universal_call('simple_commerce_perform_actions_start', $this, $query->row); if ($this->extensions->end_script === TRUE) return;
$this¶
The current Simple Commerce object including all data relating to the purchase and debug state

User Contributed Notes
You must have an ExpressionEngine license and have attained a forum rank of "Lab Assistant" (100 posts) to contribute notes to the User Guide