...
Code Block | ||||
---|---|---|---|---|
| ||||
<?php /** * Class TNW_Salesforce_Model_Observer */ class TNW_Salesforce_Model_Observer { public function invoiceNotesSendAfter(Varien_Event_Observer $observer) { /** * Array of Salesforce objects * @var stdClass[] $_data * * Example: * array (size=1) * 1 => * object(stdClass)[843] * public 'ParentId' => null * public 'IsPrivate' => int 0 * public 'Body' => string 'Custom comment' (length=14) * public 'Title' => string 'Custom comment' (length=14) */ $_data = $observer->getData('data'); /** * Array of Results * @var stdClass[] $_result * Example: * array (size=1) * 1 => * object(stdClass)[855] * public 'created' => boolean true * public 'id' => string '00224000002qNvJAAU' (length=18) * public 'success' => boolean true */ $_result = $observer->getData('result'); // Your custom code } } |
...