tnw_salesforce_invoice_notes_send_after
An event is triggered after sending data in Salesforce.
TNW_Salesforce_Block_Sales_Order_Status_New_Form
Mage::dispatchEvent('tnw_salesforce_invoice_notes_send_after', array('data' => $_data, 'result' => $_result));
How to use this event:
Several steps are involved into utilizing this event:
- config.xml
- a listener should be added for this event
- a listener should point to a Magento Observer module and a method in that observer
- Magento Observer
- holds a method where you can add your custom logic
Example Config
<?xml version="1.0"?> <config> <global> <events> <tnw_salesforce_invoice_notes_send_after> <observers> <salesforce_invoice_notes_send_after_observer> <class>tnw_salesforce/observer</class> <method>invoiceNotesSendAfter</method> </salesforce_invoice_notes_send_after_observer> </observers> </tnw_salesforce_invoice_notes_send_after> </events> </global> </config>
Example Observer
<?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 } }
Related articles
Filter by label
There are no items with the selected labels at this time.